2018-06-24 07:09:41 -07:00
|
|
|
FarCall_de::
|
2013-09-05 11:24:29 -07:00
|
|
|
; Call a:de.
|
|
|
|
; Preserves other registers.
|
2020-04-06 10:02:23 -07:00
|
|
|
ldh [hTempBank], a
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh a, [hROMBank]
|
2013-09-05 11:24:29 -07:00
|
|
|
push af
|
2020-04-06 10:02:23 -07:00
|
|
|
ldh a, [hTempBank]
|
2013-09-05 11:24:29 -07:00
|
|
|
rst Bankswitch
|
2020-06-29 16:35:47 -07:00
|
|
|
call FarCall_JumpToDE
|
2013-09-05 11:24:29 -07:00
|
|
|
jr ReturnFarCall
|
|
|
|
|
2020-06-29 16:35:47 -07:00
|
|
|
FarCall_JumpToDE:
|
2013-09-05 11:24:29 -07:00
|
|
|
push de
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
FarCall_hl::
|
2013-09-05 11:24:29 -07:00
|
|
|
; Call a:hl.
|
|
|
|
; Preserves other registers.
|
2020-04-06 10:02:23 -07:00
|
|
|
ldh [hTempBank], a
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh a, [hROMBank]
|
2013-09-05 11:24:29 -07:00
|
|
|
push af
|
2020-04-06 10:02:23 -07:00
|
|
|
ldh a, [hTempBank]
|
2013-09-05 11:24:29 -07:00
|
|
|
rst Bankswitch
|
2019-11-23 17:56:22 -08:00
|
|
|
call FarCall_JumpToHL
|
2020-06-21 15:33:31 -07:00
|
|
|
; fallthrough
|
2013-09-05 11:24:29 -07:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
ReturnFarCall::
|
2013-09-05 11:24:29 -07:00
|
|
|
; We want to retain the contents of f.
|
|
|
|
; To do this, we can pop to bc instead of af.
|
|
|
|
ld a, b
|
2015-11-03 19:35:36 -08:00
|
|
|
ld [wFarCallBCBuffer], a
|
2013-09-05 11:24:29 -07:00
|
|
|
ld a, c
|
2015-11-03 19:35:36 -08:00
|
|
|
ld [wFarCallBCBuffer + 1], a
|
2016-04-10 11:42:14 -07:00
|
|
|
|
2013-09-05 11:24:29 -07:00
|
|
|
; Restore the working bank.
|
|
|
|
pop bc
|
|
|
|
ld a, b
|
|
|
|
rst Bankswitch
|
2016-04-10 11:42:14 -07:00
|
|
|
|
2020-06-29 16:35:47 -07:00
|
|
|
; Restore the contents of bc.
|
2015-11-03 19:35:36 -08:00
|
|
|
ld a, [wFarCallBCBuffer]
|
2013-09-05 11:24:29 -07:00
|
|
|
ld b, a
|
2015-11-03 19:35:36 -08:00
|
|
|
ld a, [wFarCallBCBuffer + 1]
|
2013-09-05 11:24:29 -07:00
|
|
|
ld c, a
|
|
|
|
ret
|
|
|
|
|
2019-11-23 17:56:22 -08:00
|
|
|
FarCall_JumpToHL::
|
2017-06-09 14:01:10 -07:00
|
|
|
jp hl
|