Routines |
Prev: 74C3 | Up: Map | Next: 74DB |
Used by the routines at PrintLevelName, PrintGameDisplay, DisplayStartScreen, DisplayChangeControls, PrintInstructions, CheckPassword and DisplayInstructions.
|
||||||||||||
Print_Loop | 74D3 | LD A,(HL) | Fetch a character from the string, store it in A. | |||||||||
74D4 | CALL PrintLetter | Call PrintLetter. | ||||||||||
74D7 | INC HL | Increment the string pointer by one. | ||||||||||
74D8 | DJNZ Print_Loop | Decrease counter by one and loop back to Print_Loop until counter is zero. | ||||||||||
74DA | RET | Return. |
Prev: 74C3 | Up: Map | Next: 74DB |