Prev: 6D30 Up: Map Next: 6D49
6D3C: Print String
Used by the routine at Vector_Main.
PrintString 6D3C POP HL Get return address from stack. This will point to the string to print.
PrintStringNextChar 6D3D LD A,(HL) Get next char.
6D3E INC HL
6D3F CP $5E Use '^' as the end of string char.
6D41 JR Z,PrintStringExit
6D43 CALL Vector_PrintChar Print char using the correct char set.
6D46 JR PrintStringNextChar
PrintStringExit 6D48 JP (HL) Return using the address at the end of the string.
Prev: 6D30 Up: Map Next: 6D49