ref: 71f51955c9b50a5e03739e2bd1d927ea55ee6d5a
dir: /engine/predef.asm/
GetPredefPointer:: ; 854b ; Return the bank and address of wPredefID in a and wPredefAddress. ; Save hl for later (back in Predef) ld a, h ld [wPredefTemp], a ld a, l ld [wPredefTemp + 1], a push de ld a, [wPredefID] ld e, a ld d, 0 ld hl, PredefPointers add hl, de add hl, de add hl, de pop de ld a, [hli] ld [wPredefAddress + 1], a ld a, [hli] ld [wPredefAddress], a ld a, [hl] ret ; 856b INCLUDE "data/predef_pointers.asm"