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 | |
parent | 3e9e7663ec0428a5f054e09efa704aea1d704c9a (diff) |
move gbhw.asm and hram.asm to constants.asm
they're constants, so they have no business in pokecrystal.asm
-rw-r--r-- | constants.asm | 3 | ||||
-rw-r--r-- | pokecrystal.asm | 4 |
2 files changed, 4 insertions, 3 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" diff --git a/pokecrystal.asm b/pokecrystal.asm index 0155e0ca9..f64d44e76 100644 --- a/pokecrystal.asm +++ b/pokecrystal.asm @@ -1,5 +1,3 @@ INCLUDE "wram.asm" INCLUDE "constants.asm" -INCLUDE "gbhw.asm" -INCLUDE "hram.asm" -INCLUDE "main.tx" +INCLUDE "main.asm" |