Prev: A59F Up: Map Next: A5CD
A5C4: Process Text Stream
Used by the routines at A59F, A75B and A771.
Input
HL Pointer to text data
ProcessTextStream A5C4 PUSH HL Transfer the pointer to the text data to be printed into IX (using the stack).
A5C5 POP IX
Keep on looping through until all of the text has been printed.
TextProcessing_Loop A5C7 CALL ProcessTextCommand Call ProcessTextCommand.
A5CA JR NZ,TextProcessing_Loop Jump back to TextProcessing_Loop until all the text has been processed.
A5CC RET Return.
Prev: A59F Up: Map Next: A5CD