diff options
author | yenatch <yenatch@gmail.com> | 2013-11-27 12:46:25 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-11-27 14:45:43 -0500 |
commit | 1cf607cc41bcaad1346fb810428b3d9512522085 (patch) | |
tree | bb289736e35652cda411968e70152121e871ae60 | |
parent | 4c8737effbba0aa69d3f9f27e2b88020f5ebb41d (diff) |
macros come first since theyre used to define constants
-rw-r--r-- | constants.asm | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/constants.asm b/constants.asm index 9f0b48faa..6648166c2 100644 --- 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 @@ -82,13 +90,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 |