Prev: 29891 Up: Map Next: 29915
29907: Print Loop
Input
B Counter; number of characters to print
HL Address of the string
DE' Screen buffer address for output
Print_Loop 29907 LD A,(HL) Fetch a character from the string, store it in A.
29908 CALL PrintLetter Call PrintLetter.
29911 INC HL Increment the string pointer by one.
29912 DJNZ Print_Loop Decrease counter by one and loop back to Print_Loop until counter is zero.
29914 RET Return.
Prev: 29891 Up: Map Next: 29915