summaryrefslogtreecommitdiff
path: root/macros.asm
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2016-12-06 23:22:36 -0500
committerPikalaxALT <pikalaxalt@gmail.com>2016-12-06 23:22:36 -0500
commit86b014dc02d8f35ee35e5551bc59a58991880ad9 (patch)
treeb7e1e3e2546d42234c3639ea620e2553b30f8f34 /macros.asm
parent71562fb54992ea76d8314dc75840b1952dbbc4b9 (diff)
More HRAM labels
Diffstat (limited to 'macros.asm')
-rwxr-xr-xmacros.asm5
1 files changed, 5 insertions, 0 deletions
diff --git a/macros.asm b/macros.asm
index 8ea6e91..7c48c05 100755
--- a/macros.asm
+++ b/macros.asm
@@ -25,6 +25,11 @@ dab: MACRO
dwb \1, BANK(\1)
ENDM
+padded_dab: MACRO
+ dab \1
+ db $00
+ ENDM
+
dn: MACRO
rept _NARG / 2
db (\1) << 4 + (\2)