move save rodata to source and use saveblock chunk macros

This commit is contained in:
ProjectRevoTPP
2018-01-31 15:26:57 -05:00
parent ef3df1d40c
commit 78bd2b0849
4 changed files with 59 additions and 22 deletions

View File

@@ -37,6 +37,9 @@
#define POKEMON_NAME_LENGTH 10
#define OT_NAME_LENGTH 7
#define min(a, b) ((a) < (b) ? (a) : (b))
#define max(a, b) ((a) >= (b) ? (a) : (b))
#define HEAP_SIZE 0x1C000
extern u8 gStringVar1[];