summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to 'home')
-rw-r--r--home/init.asm2
-rw-r--r--home/serial.asm2
-rw-r--r--home/vblank.asm4
3 files changed, 4 insertions, 4 deletions
diff --git a/home/init.asm b/home/init.asm
index e4d980ef..671809a7 100644
--- a/home/init.asm
+++ b/home/init.asm
@@ -54,7 +54,7 @@ rLCDC_DEFAULT EQU %11100011
call ClearVram ; 1dc6
ld hl, $ff80
- ld bc, $ffff - $ff80
+ ld bc, $fffe - $ff80
call FillMemory
call ClearSprites
diff --git a/home/serial.asm b/home/serial.asm
index 3c5c343b..c8e64f38 100644
--- a/home/serial.asm
+++ b/home/serial.asm
@@ -232,7 +232,7 @@ Serial_PrintWaitingTextAndSyncAndExchangeNybble:: ; 20ca (0:20ca)
call Serial_SyncAndExchangeNybble
jp LoadScreenTilesFromBuffer1
-Serial_SyncAndExchangeNybble:: ; 227f (0:227f)
+Serial_SyncAndExchangeNybble:: ; 20db (0:20db)
ld a, $ff
ld [wSerialExchangeNybbleReceiveData], a
.loop1
diff --git a/home/vblank.asm b/home/vblank.asm
index 08348f79..fda0f6f5 100644
--- a/home/vblank.asm
+++ b/home/vblank.asm
@@ -1,4 +1,4 @@
-VBlank::
+VBlank:: ; 1de5 (0:1de5)
push af
push bc
@@ -83,7 +83,7 @@ VBlank::
reti
-DelayFrame::
+DelayFrame:: ; 1e64 (0:1e64)
; Wait for the next vblank interrupt.
; As a bonus, this saves battery.