diff options
author | yenatch <yenatch@gmail.com> | 2014-03-03 05:28:53 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-03-03 05:28:53 -0500 |
commit | 86e77a0229443a43317f6d33f8bb2ba2b26dea71 (patch) | |
tree | ba0ca1e710fa2fa1ad65e673450045af1dab4b33 /macros.asm | |
parent | 9fb9a286ba2869214d9ebb7be9b72bbd3bdfb67f (diff) |
dbbw macro
Diffstat (limited to 'macros.asm')
-rw-r--r-- | macros.asm | 5 |
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 |