mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
Remove extra parentheses
This commit is contained in:
parent
5e6837807c
commit
146fa1be51
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user