mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-17 02:40:50 +12:00
Avoid "Warning: Left shift of negative value" from rgbds
This commit is contained in:
parent
462088a25c
commit
eddcbba82f
|
@ -1,6 +1,6 @@
|
|||
|
||||
lb: MACRO ; r, hi, lo
|
||||
ld \1, (\2) << 8 + ((\3) & $ff)
|
||||
ld \1, ((\2) & $ff) << 8 + ((\3) & $ff)
|
||||
ENDM
|
||||
|
||||
homecall: MACRO
|
||||
|
|
Loading…
Reference in a new issue