Prev: 8A93 Up: Map Next: 8D11
8CFE: Select character set and draw character. Anything less than 51 gets drawn in the ROM set, else it uses the special set.
Used by the routine at 891F.
Input
A Character code to print.
PrintChar 8CFE PUSH HL
8CFF CP $51
8D01 JR NC,PrintChar_0
8D03 LD HL,$3C00
8D06 JR PrintChar_1
PrintChar_0 8D08 LD HL,Charset_StartPtr
PrintChar_1 8D0B LD ($5C36),HL
8D0E RST $10
8D0F POP HL
8D10 RET
Prev: 8A93 Up: Map Next: 8D11