Blind wram labels part 4.

This commit is contained in:
yenatch
2015-02-10 15:14:41 -08:00
parent 62b473d6c6
commit c07ed74a5d
23 changed files with 340 additions and 326 deletions

View File

@@ -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