shithub: pokecrystal

Download patch

ref: 1cf607cc41bcaad1346fb810428b3d9512522085
parent: 4c8737effbba0aa69d3f9f27e2b88020f5ebb41d
author: yenatch <yenatch@gmail.com>
date: Wed Nov 27 07:46:25 EST 2013

macros come first since theyre used to define constants

--- a/constants.asm
+++ b/constants.asm
@@ -1,4 +1,12 @@
 
+; macros require rst vectors to be defined
+FarCall    EQU $08
+Bankswitch EQU $10
+JumpTable  EQU $28
+
+INCLUDE "macros.asm"
+
+
 ; wram constants
 ; MonType: ; cf5f
 PARTYMON   EQU 0
@@ -81,13 +89,6 @@
 INCLUDE "constants/music_constants.asm"
 INCLUDE "constants/sfx_constants.asm"
 
-
-; macros require rst vectors to be defined
-FarCall    EQU $08
-Bankswitch EQU $10
-JumpTable  EQU $28
-
-INCLUDE "macros.asm"
 
 
 NONE       EQU 0
--