Prev: 54283 Up: Map Next: 54333
54322: Print command summary text (text at DE, e.g. "COMMAND ") in command summary window
Used by the routines at 33952 and 34122.
Input
DE Pointer to text to print
54322 LD A,D If DE is zero (i.e. no command summary text)...
54323 OR E ...
54324 RET Z ...then return
54325 PUSH DE Store DE (command summary text pointer)
54326 CALL 54333 Print or update command summary window at top of screen
54329 POP DE Restore DE (command summary text pointer)...
54330 JP 54283 ...and print in command summary window at top of screen and return
Prev: 54283 Up: Map Next: 54333