summaryrefslogtreecommitdiff
path: root/home/handshake.asm
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2015-02-10 15:14:41 -0800
committeryenatch <yenatch@gmail.com>2015-02-10 15:14:41 -0800
commitc07ed74a5dbdf7ce684ec02b546862bbcc582f5f (patch)
tree0b6248dc338caa0970dddbac4c96a8c58f2501d5 /home/handshake.asm
parent62b473d6c65a50134dda1511351fcab2cf476cf7 (diff)
Blind wram labels part 4.
Diffstat (limited to 'home/handshake.asm')
-rw-r--r--home/handshake.asm8
1 files changed, 4 insertions, 4 deletions
diff --git a/home/handshake.asm b/home/handshake.asm
index b72b861c2..68dad5cb7 100644
--- a/home/handshake.asm
+++ b/home/handshake.asm
@@ -1,15 +1,15 @@
AskSerial:: ; 2063
; send out a handshake while serial int is off
- ld a, [$c2d4]
+ ld a, [wc2d4]
bit 0, a
ret z
- ld a, [$c2d5]
+ ld a, [wc2d5]
and a
ret nz
; once every 6 frames
- ld hl, $ca8a
+ ld hl, wca8a
inc [hl]
ld a, [hl]
cp 6
@@ -19,7 +19,7 @@ AskSerial:: ; 2063
ld [hl], a
ld a, $c
- ld [$c2d5], a
+ ld [wc2d5], a
; handshake
ld a, $88