Prev: B5FD Up: Map Next: B60F
B60A: Prints a string which is stored in the stack.
Normally the string is stored in the address directly after the call. This is push onto the stack as the return address.
Print_StringOnStack B60A POP HL Get return address from stack, this contains the string.
B60B CALL Print_TermString
B60E JP (HL) Now points to byte after string, which is the real return address.
Prev: B5FD Up: Map Next: B60F