Prev: 626d Up: Map Next: 62da
62ca: Write a single line of text on the main menu screen.
Used by the routine at 6234.
Input
HL Coordinate on the screen to display the string.
62ca push hl Backup coordinate
62cb call $72d0 HL=coord to screen address (using HL)
62ce ld a,($5dd6) Current colour attribute
62d1 ex af,af'
62d2 exx
62d3 pop hl Restore coordinate
62d4 call $71d6 HL=coord to attribute file address (using HL)
62d7 jp $7140 Display text string at HL, using A' colour
Prev: 626d Up: Map Next: 62da