diff options
author | Astatin <[email protected]> | 2024-09-24 19:21:35 +0900 |
---|---|---|
committer | Astatin <astatin@redacted> | 2024-09-24 19:21:35 +0900 |
commit | 46947d48fe295a0a1a8d243ca6793f59ce3019c1 (patch) | |
tree | b5e19fbd3f5fa4429206a1f69d65b34c56f60ebc /init.gbasm | |
parent | ec1f79b44203735f581c7f85b6c23216aaf587a6 (diff) |
Small change to be compatible with new asm
Diffstat (limited to 'init.gbasm')
-rw-r--r-- | init.gbasm | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -28,9 +28,9 @@ Empty_WRAM: LD HL, $C000 Empty_WRAM.loop: XOR A - LD (HL+), a - LD a, $D0 - CP h + LD (HL+), A + LD A, $D0 + CP H JR NZ, =Empty_WRAM.loop CALL =VBlank_Wait |