Prev: 65BF Up: Map Next: 6A18
69F1: Routine at 69F1
Used by the routine at Vector_HeroInit.
Actions_Run 69F1 LD IX,ActionsLinkListPtr Check for special action in the link list.
Actions_Run_NextLink 69F5 LD L,(IX+$00)
69F8 LD H,(IX+$01)
69FB LD A,L Do nothing if 0000
69FC OR H
69FD RET Z
69FE PUSH HL
69FF EX (SP),IX Check flag, if 0 move from this list to other.
6A01 LD A,(IX+$0B)
6A04 AND A
6A05 JR NZ,Actions_Run_Call
6A07 CALL Vector_LinkListInsert
6A0A JR Actions_Run_NextLink
Actions_Run_Call 6A0C LD L,(IX+$03) Call related function.
6A0F LD H,(IX+$04)
6A12 CALL Call_HL
6A15 POP HL Move onto next link in list.
6A16 JR Actions_Run_NextLink
Prev: 65BF Up: Map Next: 6A18