Prev: 9C6A Up: Map Next: 9C85
9C77: Execute Character Action
Used by the routine at GameEntryPoint.
Input
IY Character timetable pointer
ExecuteCharacterAction 9C77 CALL Handler_FindCharacterAction Call Handler_FindCharacterAction.
9C7A RET Z Return if no action was found (the termination character was returned FF).
9C7B LD L,(IX+$01) Fetch the action handler address and store it in HL.
9C7E LD H,(IX+$02)
9C81 LD A,L Return if the action handler address is empty.
9C82 OR H
9C83 RET Z
9C84 JP (HL) Jump to the action handler.
Prev: 9C6A Up: Map Next: 9C85