shithub: pokecrystal

Download patch

ref: 4f5ae6510c4b52ca9a889505f4ff77f811671c1e
parent: 7bae65b6647f9dd5b61b0bd389b9fe4090f8e37d
author: yenatch <[email protected]>
date: Sun Feb 2 11:13:23 EST 2014

Move rst constants into macros.asm

--- a/constants.asm
+++ b/constants.asm
@@ -1,9 +1,4 @@
 
-; macros require rst vectors to be defined
-FarCall    EQU $08
-Bankswitch EQU $10
-JumpTable  EQU $28
-
 INCLUDE "macros.asm"
 
 INCLUDE "gbhw.asm"
--- a/macros.asm
+++ b/macros.asm
@@ -1,5 +1,12 @@
 ; rgbds macros
 
+
+; macros require rst vectors to be defined
+FarCall    EQU $08
+Bankswitch EQU $10
+JumpTable  EQU $28
+
+
 dwb: MACRO
 	dw \1
 	db \2