aboutsummaryrefslogtreecommitdiff
path: root/init.gbasm
diff options
context:
space:
mode:
authorAstatin <[email protected]>2024-09-24 19:21:35 +0900
committerAstatin <astatin@redacted>2024-09-24 19:21:35 +0900
commit46947d48fe295a0a1a8d243ca6793f59ce3019c1 (patch)
treeb5e19fbd3f5fa4429206a1f69d65b34c56f60ebc /init.gbasm
parentec1f79b44203735f581c7f85b6c23216aaf587a6 (diff)
Small change to be compatible with new asm
Diffstat (limited to 'init.gbasm')
-rw-r--r--init.gbasm6
1 files changed, 3 insertions, 3 deletions
diff --git a/init.gbasm b/init.gbasm
index 8898848..8a7a5f4 100644
--- a/init.gbasm
+++ b/init.gbasm
@@ -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