summaryrefslogtreecommitdiff
path: root/macros.asm
diff options
context:
space:
mode:
authorpikalaxalt <PikalaxALT@gmail.com>2016-05-24 17:41:33 -0400
committerpikalaxalt <PikalaxALT@gmail.com>2016-05-24 17:41:33 -0400
commit219eddf056933c6e5f06903caa73d49de3118a60 (patch)
treef06ec3c1e351de9b9f2466f371a3c13faf1fe8a7 /macros.asm
parentfdac1f9f80295eb4ce7c347f3e7626897a67826d (diff)
Update hidden object functions and include them in main
Diffstat (limited to 'macros.asm')
-rw-r--r--macros.asm4
1 files changed, 4 insertions, 0 deletions
diff --git a/macros.asm b/macros.asm
index b71a5dd9..c4318278 100644
--- a/macros.asm
+++ b/macros.asm
@@ -262,6 +262,10 @@ dbw: MACRO
dw \2
ENDM
+dba: MACRO
+ dbw BANK(\1), \1
+ ENDM
+
; data format macros
RGB: MACRO
dw (\3 << 10 | \2 << 5 | \1)