Routines |
Prev: B17F | Up: Map | Next: B1FF |
Continues from B0E8. Prints the character's name followed by a space.
|
||||||||||
B1E8 | PUSH BC | |||||||||
B1E9 | LD DE,$5020 | This is the display file address at which to print the character's name | ||||||||
B1EC | CALL $AFE8 | Print the character's name | ||||||||
B1EF | LD HL,$B477 | B477: ' ' | ||||||||
B1F2 | CALL $B3F9 | Print a space | ||||||||
B1F5 | LD HL,$9860 | Point HL at byte 0x60 of little boy no. 1's buffer | ||||||||
B1F8 | POP BC | |||||||||
B1F9 | LD A,B | A=1-8 (corresponding to one of the eight main characters) | ||||||||
B1FA | NOP | |||||||||
B1FB | NOP | |||||||||
B1FC | JP $B2E8 |
Prev: B17F | Up: Map | Next: B1FF |