diff options
author | yenatch <yenatch@gmail.com> | 2015-02-10 15:14:41 -0800 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2015-02-10 15:14:41 -0800 |
commit | c07ed74a5dbdf7ce684ec02b546862bbcc582f5f (patch) | |
tree | 0b6248dc338caa0970dddbac4c96a8c58f2501d5 /home/farcall.asm | |
parent | 62b473d6c65a50134dda1511351fcab2cf476cf7 (diff) |
Blind wram labels part 4.
Diffstat (limited to 'home/farcall.asm')
-rw-r--r-- | home/farcall.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/home/farcall.asm b/home/farcall.asm index 8539fcc2f..f54ba0df0 100644 --- a/home/farcall.asm +++ b/home/farcall.asm @@ -33,18 +33,18 @@ ReturnFarCall:: ; 2d6e ; To do this, we can pop to bc instead of af. ld a, b - ld [$cfb9], a + ld [PredefAddress + 2], a ld a, c - ld [$cfba], a + ld [PredefAddress + 3], a ; Restore the working bank. pop bc ld a, b rst Bankswitch - ld a, [$cfb9] + ld a, [PredefAddress + 2] ld b, a - ld a, [$cfba] + ld a, [PredefAddress + 3] ld c, a ret ; 2d82 |