summaryrefslogtreecommitdiff
path: root/macros.asm
diff options
context:
space:
mode:
authorU-Fish-PC\Daniel <corrnondacqb@yahoo.com>2014-04-17 18:47:47 -0400
committerU-Fish-PC\Daniel <corrnondacqb@yahoo.com>2014-04-17 18:47:47 -0400
commit4fa4b95128c5ebd654b6b875f832d109a69824b0 (patch)
treee6a3beab10d456b4e5689faef80c483b0dad0211 /macros.asm
parent68a67314d1011aeb3f36702028ee0ccae643b416 (diff)
emptybank.asm was a stupid idea
Diffstat (limited to 'macros.asm')
-rwxr-xr-xmacros.asm6
1 files changed, 6 insertions, 0 deletions
diff --git a/macros.asm b/macros.asm
index bd66536..247c9a2 100755
--- a/macros.asm
+++ b/macros.asm
@@ -2,6 +2,12 @@ RGB: MACRO
dw (\3 << 10 | \2 << 5 | \1)
ENDM
+emptybank: MACRO
+ rept $4000
+ db $ff
+ endr
+ENDM
+
C_ EQU $1
C# EQU $2
D_ EQU $3