Prev: A267 Up: Map Next: A280
A275: 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 A275 CALL PrintString Call PrintString.
A278 PUSH AF Stash the character to print on the stack.
Force a newline to be "printed".
A279 LD A,$0D Load a "newline" character into A (0D).
A27B CALL PrintCharacter Call PrintCharacter.
A27E POP AF Restore the character to print from the stack.
A27F RET Return.
View the equivalent code in;
Prev: A267 Up: Map Next: A280