diff options
Diffstat (limited to 'constants.asm')
-rw-r--r-- | constants.asm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/constants.asm b/constants.asm index c60d4a044..a55221327 100644 --- a/constants.asm +++ b/constants.asm @@ -5,6 +5,11 @@ dwb: MACRO db \2 ENDM +dbw: MACRO + db \1 + dw \2 + ENDM + dn: MACRO db \1 << 4 + \2 ENDM @@ -3335,4 +3340,4 @@ NUM_SRAM_BANKS EQU 4 Unkn1Pals EQU $d000 ; 8 4-color palettes little endian) Unkn2Pals EQU $d040 ; 8 4-color palettes little endian) BGPals EQU $d080 ; 8 4-color palettes little endian) -OBPals EQU $d0c0 ; 8 4-color palettes little endian)
\ No newline at end of file +OBPals EQU $d0c0 ; 8 4-color palettes little endian) |