mirror of https://github.com/pret/pokecrystal.git
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:
parent
3e9e7663ec
commit
018cf26767
|
@ -6,6 +6,9 @@ else
|
||||||
VERSION EQU 1
|
VERSION EQU 1
|
||||||
endc
|
endc
|
||||||
|
|
||||||
|
INCLUDE "gbhw.asm"
|
||||||
|
INCLUDE "hram.asm"
|
||||||
|
|
||||||
INCLUDE "constants/pokemon_constants.asm"
|
INCLUDE "constants/pokemon_constants.asm"
|
||||||
INCLUDE "constants/move_constants.asm"
|
INCLUDE "constants/move_constants.asm"
|
||||||
INCLUDE "constants/battle_constants.asm"
|
INCLUDE "constants/battle_constants.asm"
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
INCLUDE "wram.asm"
|
INCLUDE "wram.asm"
|
||||||
INCLUDE "constants.asm"
|
INCLUDE "constants.asm"
|
||||||
INCLUDE "gbhw.asm"
|
INCLUDE "main.asm"
|
||||||
INCLUDE "hram.asm"
|
|
||||||
INCLUDE "main.tx"
|
|
||||||
|
|
Loading…
Reference in New Issue