Prev: 41575 Up: Map Next: 41600
41589: Print String And A Newline
Used by the routines at SaveGame and LoadTape.
Shortcut print routine which prints a newline after it's done.
PrintStringAndNewline 41589 CALL PrintString Call PrintString.
41592 PUSH AF Stash the character to print on the stack.
Force a newline to be "printed".
41593 LD A,13 Load a "newline" character into A (13).
41595 CALL PrintCharacter Call PrintCharacter.
41598 POP AF Restore the character to print from the stack.
41599 RET Return.
View the equivalent code in;
Prev: 41575 Up: Map Next: 41600