summaryrefslogtreecommitdiff
path: root/macros.asm
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2014-03-03 05:28:53 -0500
committeryenatch <yenatch@gmail.com>2014-03-03 05:28:53 -0500
commit86e77a0229443a43317f6d33f8bb2ba2b26dea71 (patch)
treeba0ca1e710fa2fa1ad65e673450045af1dab4b33 /macros.asm
parent9fb9a286ba2869214d9ebb7be9b72bbd3bdfb67f (diff)
dbbw macro
Diffstat (limited to 'macros.asm')
-rw-r--r--macros.asm5
1 files changed, 5 insertions, 0 deletions
diff --git a/macros.asm b/macros.asm
index b39fb1432..531ead5b5 100644
--- a/macros.asm
+++ b/macros.asm
@@ -20,6 +20,11 @@ dbw: MACRO
dw \2
ENDM
+dbbw: MACRO
+ db \1, \2
+ dw \3
+ ENDM
+
dn: MACRO
db \1 << 4 + \2
ENDM