Prev: 631c Up: Map Next: 633d
6334: Performs a main loop update jump.
Used by the routines at 631c and 648b.
Input
A Offset for jump table address.
HL Address to the jump table.
6334 ld c,a
6335 ld b,$00 BC=offset: 34 max (size of jump table)
6337 add hl,bc Set HL to jump table address using offset
6338 ld a,(hl) Assign the jump address back to HL
6339 inc hl
633a ld h,(hl)
633b ld l,a
633c jp (hl) Use `jp` so `ret` calls the new actor/timer routine
Prev: 631c Up: Map Next: 633d