Skool Daze Routines
45544: Print a character's title and name, and walk him onto the screen (2)
Continues from 45288. Prints the character's name followed by a space.
B 1-8 (corresponding to one of the eight main characters)
HL Message address for character's name, e.g. 55680: 'ERIC'
45544 PUSH BC
45545 LD DE,20512 This is the display file address at which to print the character's name
45548 CALL 45032 Print the character's name
45551 LD HL,46199 46199: ' '
45554 CALL 46073 Print a space
45557 LD HL,39008 Point HL at byte 96 of little boy no. 1's buffer
45560 POP BC
45561 LD A,B A=1-8 (corresponding to one of the eight main characters)
45562 NOP
45563 NOP
45564 JP 45800