Prev: 74C3 Up: Map Next: 74DB
74D3: Print Loop
Input
B Counter; number of characters to print
HL Address of the string
DE' Screen buffer address for output
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