mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-17 02:40:50 +12:00

While doing so I replaced the StopAllMusic macro with a SFX_STOP_ALL_MUSIC constant and applied it throughout the code.
10 lines
154 B
NASM
Executable file
10 lines
154 B
NASM
Executable file
; Syntactic sugar macros
|
|
|
|
lb: MACRO ; r, hi, lo
|
|
ld \1, ((\2) & $ff) << 8 + ((\3) & $ff)
|
|
ENDM
|
|
|
|
ldPal: MACRO
|
|
ld \1, \2 << 6 | \3 << 4 | \4 << 2 | \5
|
|
ENDM
|