Prev: D602 Up: Map Next: D616
D60E: Print String
Input
DE Pointer to string data
PrintString D60E LD A,(DE) Fetch a character from the string data pointer.
D60F INC DE Increment the string data pointer by one.
D610 CP $FF Return if the current character is equal to FF (the terminator).
D612 RET Z
D613 RST $10 Print to the screen using RST 10.
D614 JR PrintString Jump to PrintString.
Prev: D602 Up: Map Next: D616