ref: 018cf26767647d233f939bc791a64d3b5d6e3bd1
parent: 3e9e7663ec0428a5f054e09efa704aea1d704c9a
author: yenatch <[email protected]>
date: Mon Sep 9 22:16:15 EDT 2013
move gbhw.asm and hram.asm to constants.asm they're constants, so they have no business in pokecrystal.asm
--- a/constants.asm
+++ b/constants.asm
@@ -6,6 +6,9 @@
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"
--- 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"