Prev: 54786 Up: Map Next: 54806
54798: Print String
Input
DE Pointer to string data
PrintString 54798 LD A,(DE) Fetch a character from the string data pointer.
54799 INC DE Increment the string data pointer by one.
54800 CP 255 Return if the current character is equal to 255 (the terminator).
54802 RET Z
54803 RST 16 Print to the screen using RST 16.
54804 JR PrintString Jump to PrintString.
Prev: 54786 Up: Map Next: 54806