Prev: 29862 Up: Map Next: 29889
29882: Print Action
Used by the routine at 28915.
Input
HL Pointer to an action in the actions table
Output
HL Pointer is incremented twice
DE A word token
PrintAction 29882 LD E,(HL) Store the word token in DE (we keep only bits 0-3 of the MSB).
29883 INC HL
29884 LD A,(HL)
29885 INC HL
29886 AND %00001111
29888 LD D,A
Continues on to PrintToken to print.
Prev: 29862 Up: Map Next: 29889