Prev: 91B6 Up: Map Next: 91DD
91C5: Print Key
Used by the routine at RedefineKey.
Print_Key 91C5 PUSH AF Stash AF on the stack.
91C6 CALL PrintString_Loop Call PrintString_Loop.
91C9 DEFM $07
91CA DEFB $FF Terminator.
91CB POP AF Restore AF from the stack.
91CC CP $0D Jump to Print_Enter if A is equal to 0D.
91CE JR Z,Print_Enter
91D0 CP $20 Jump to Print_Space if A is equal to 20.
91D2 JR Z,Print_Space
91D4 CP $04 Jump to Print_ASCII_Space if A is greater than 04.
91D6 JP NC,Print_ASCII_Space
91D9 CP $01 Jump to Print_CapsLock if A is equal to 01.
91DB JR Z,Print_CapsLock
Continue on to Print_SymbolShift.
Prev: 91B6 Up: Map Next: 91DD