move gbhw.asm and hram.asm to constants.asm

they're constants, so they have no business in pokecrystal.asm
This commit is contained in:
yenatch 2013-09-10 02:16:15 -04:00
parent 3e9e7663ec
commit 018cf26767
2 changed files with 4 additions and 3 deletions

View File

@ -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"

View File

@ -1,5 +1,3 @@
INCLUDE "wram.asm"
INCLUDE "constants.asm"
INCLUDE "gbhw.asm"
INCLUDE "hram.asm"
INCLUDE "main.tx"
INCLUDE "main.asm"