Prev: FD97 Up: Map Next: FDA4
FD9C: Print-string loop: prints each character at (HL) until the terminator is printed
Calls print_character to print the character at (HL), advances HL, and loops until a byte with bit 7 set (the string terminator) is printed.
This and print_character were previously misclassified as part of the FC29 text data block -- the text ends at $FD96; see that block's header.
print_string FD9C CALL print_character
FD9F LD A,(HL)
FDA0 AND A
FDA1 RET Z
FDA2 JR print_string
Prev: FD97 Up: Map Next: FDA4