diff options
author | Daniel Harding <33dannye@gmail.com> | 2018-07-15 21:45:22 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-15 21:45:22 -0500 |
commit | c9da8510c88524c3c50e33f41ea1881594898d36 (patch) | |
tree | bd01b71757307249064ca236fdc9c8eb94b19f3b /macros/asm_macros.asm | |
parent | 929c65f805ba144e7e093b2c5b2f70b84176ba00 (diff) | |
parent | eddcbba82fa07705b35f3958a4f729878f22ecc2 (diff) |
Merge pull request #187 from Rangi42/master
Document MissingNo's base stats, and silence an rgbds warning
Diffstat (limited to 'macros/asm_macros.asm')
-rwxr-xr-x | macros/asm_macros.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/asm_macros.asm b/macros/asm_macros.asm index 28d2d95e..d3f00b0c 100755 --- a/macros/asm_macros.asm +++ b/macros/asm_macros.asm @@ -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 |