Prev: 74A6 Up: Map Next: 74C1
74BA: Print Action
Used by the routine at 70F3.
Input
HL Pointer to an action in the actions table
Output
HL Pointer is incremented twice
DE A word token
PrintAction 74BA LD E,(HL) Store the word token in DE (we keep only bits 0-3 of the MSB).
74BB INC HL
74BC LD A,(HL)
74BD INC HL
74BE AND %00001111
74C0 LD D,A
Continues on to PrintToken to print.
Prev: 74A6 Up: Map Next: 74C1