pokecrystal-board/home/predef.asm

53 lines
755 B
NASM
Raw Permalink Normal View History

2018-06-24 07:09:41 -07:00
Predef::
2013-09-08 20:54:12 -07:00
; Call predefined function a.
; Preserves bc, de, hl and f.
2018-01-23 14:39:09 -08:00
ld [wPredefID], a
ldh a, [hROMBank]
2013-09-08 20:54:12 -07:00
push af
ld a, BANK(GetPredefPointer)
rst Bankswitch
call GetPredefPointer ; stores hl in wPredefHL
2013-09-08 20:54:12 -07:00
; Switch to the new function's bank
rst Bankswitch
; Instead of directly calling stuff,
; push it to the stack in reverse.
ld hl, .Return
push hl
2013-09-08 20:54:12 -07:00
; Call the Predef function
2018-01-23 14:39:09 -08:00
ld a, [wPredefAddress]
2013-09-08 20:54:12 -07:00
ld h, a
2018-01-23 14:39:09 -08:00
ld a, [wPredefAddress + 1]
2013-09-08 20:54:12 -07:00
ld l, a
push hl
; Get hl back
ld a, [wPredefHL]
2013-09-08 20:54:12 -07:00
ld h, a
ld a, [wPredefHL + 1]
2013-09-08 20:54:12 -07:00
ld l, a
ret
.Return:
2013-09-08 20:54:12 -07:00
; Clean up after the Predef call
ld a, h
ld [wPredefHL], a
2013-09-08 20:54:12 -07:00
ld a, l
ld [wPredefHL + 1], a
2013-09-08 20:54:12 -07:00
pop hl
ld a, h
rst Bankswitch
ld a, [wPredefHL]
2013-09-08 20:54:12 -07:00
ld h, a
ld a, [wPredefHL + 1]
2013-09-08 20:54:12 -07:00
ld l, a
ret