You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
Remove extra parentheses
This commit is contained in:
@ -1,11 +1,11 @@
|
|||||||
; Syntactic sugar macros
|
; Syntactic sugar macros
|
||||||
|
|
||||||
lb: MACRO ; r, hi, lo
|
lb: MACRO ; r, hi, lo
|
||||||
ld \1, (((\2) & $ff) << 8) | (((\3) & $ff))
|
ld \1, ((\2) & $ff) << 8 | ((\3) & $ff)
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
ln: MACRO ; r, hi, lo
|
ln: MACRO ; r, hi, lo
|
||||||
ld \1, (((\2) & $f) << 4) | (((\3) & $f))
|
ld \1, ((\2) & $f) << 4 | ((\3) & $f)
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
ldpixel: MACRO
|
ldpixel: MACRO
|
||||||
|
Reference in New Issue
Block a user