Prev: A1F4 Up: Map Next: A267
A25C: Print Compressed String And A Newline
PrintCompressedStringAndNewline A25C PUSH AF Stash the character to print on the stack.
A25D CALL PrintCompressedString Call PrintCompressedString.
Force a newline to be "printed".
A260 LD A,$0D Load a "newline" character into A (0D).
A262 CALL PrintCharacter Call PrintCharacter.
A265 POP AF Restore the character to print from the stack.
A266 RET Return.
View the equivalent code in;
Prev: A1F4 Up: Map Next: A267