start working on battle 7

This commit is contained in:
DizzyEggg
2017-11-02 18:19:49 +01:00
parent 63210c0789
commit 5243285ab2
6 changed files with 298 additions and 828 deletions

View File

@@ -5,6 +5,12 @@
#define calloc(ct, sz) AllocZeroed((ct) * (sz))
#define free Free
#define FREE_AND_SET_NULL(ptr) \
{ \
free(ptr); \
ptr = NULL; \
}
extern u8 gHeap[];
void *Alloc(u32 size);
void *AllocZeroed(u32 size);