mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-01-23 09:16:20 -08:00
parent
a63d9dfd4f
commit
47379235f8
@ -1,11 +1,11 @@
|
||||
; Syntactic sugar macros
|
||||
|
||||
lb: MACRO ; r, hi, lo
|
||||
ld \1, (\2 & $ff) << 8 + (\3 & $ff)
|
||||
ld \1, (((\2) & $ff) << 8) | (((\3) & $ff))
|
||||
ENDM
|
||||
|
||||
ln: MACRO ; r, hi, lo
|
||||
ld \1, (\2 & $f) << 4 + (\3 & $f)
|
||||
ld \1, (((\2) & $f) << 4) | (((\3) & $f))
|
||||
ENDM
|
||||
|
||||
ldpixel: MACRO
|
||||
|
Loading…
x
Reference in New Issue
Block a user