Prev: 42399 Up: Map Next: 42445
42436: Process Text Stream
Used by the routines at 42399, 42843 and 42865.
Input
HL Pointer to text data
ProcessTextStream 42436 PUSH HL Transfer the pointer to the text data to be printed into IX (using the stack).
42437 POP IX
Keep on looping through until all of the text has been printed.
TextProcessing_Loop 42439 CALL ProcessTextCommand Call ProcessTextCommand.
42442 JR NZ,TextProcessing_Loop Jump back to TextProcessing_Loop until all the text has been processed.
42444 RET Return.
Prev: 42399 Up: Map Next: 42445