add support of multi-module projects

This commit is contained in:
vms 2019-08-01 15:34:43 +03:00
parent 7d54c13e23
commit 99df17e96c

View File

@ -15,6 +15,14 @@ int init() {
int g_isInited = 0;
void store(char *ptr, unsigned char byte) {
*ptr = byte;
}
unsigned char load(const unsigned char *ptr) {
return *ptr;
}
void* allocate(size_t size) {
return malloc(size + 1);
}