diff options
author | yenatch <yenatch@gmail.com> | 2013-09-10 02:16:15 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-09-10 02:17:48 -0400 |
commit | 018cf26767647d233f939bc791a64d3b5d6e3bd1 (patch) | |
tree | 8282bc58b0b955bab566376ed4fe356410152de9 /constants.asm | |
parent | 3e9e7663ec0428a5f054e09efa704aea1d704c9a (diff) |
move gbhw.asm and hram.asm to constants.asm
they're constants, so they have no business in pokecrystal.asm
Diffstat (limited to 'constants.asm')
-rw-r--r-- | constants.asm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/constants.asm b/constants.asm index 84d93f9dd..817268e9f 100644 --- a/constants.asm +++ b/constants.asm @@ -6,6 +6,9 @@ else VERSION EQU 1 endc +INCLUDE "gbhw.asm" +INCLUDE "hram.asm" + INCLUDE "constants/pokemon_constants.asm" INCLUDE "constants/move_constants.asm" INCLUDE "constants/battle_constants.asm" |