From 4f5ae6510c4b52ca9a889505f4ff77f811671c1e Mon Sep 17 00:00:00 2001 From: yenatch Date: Sun, 2 Feb 2014 16:13:23 -0500 Subject: [PATCH] Move rst constants into macros.asm --- constants.asm | 5 ----- macros.asm | 7 +++++++ 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/constants.asm b/constants.asm index 2c07ebb5a..85a2288fa 100644 --- 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" diff --git a/macros.asm b/macros.asm index 5497ceec2..f59284c4a 100644 --- 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