| Chase H.Q. | Routines |
| Prev: FD97 | Up: Map | Next: FDA4 |
|
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.
Used by the routines at insert_high_score_entry, run_title_screen, options_menu_driver and redefine_keys_screen.
|
||||
| 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 |