From 018cf26767647d233f939bc791a64d3b5d6e3bd1 Mon Sep 17 00:00:00 2001 From: yenatch Date: Tue, 10 Sep 2013 02:16:15 -0400 Subject: [PATCH] move gbhw.asm and hram.asm to constants.asm they're constants, so they have no business in pokecrystal.asm --- constants.asm | 3 +++ 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"