We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2751584 commit ca01976Copy full SHA for ca01976
2 files changed
kernal/editor.2
@@ -241,7 +241,13 @@ SCNKEY LDA #$00
241
BEQ SCNOUT ;BRANCH IF NONE
242
LDA #0
243
STA STKEY ; clear stop key
244
- TAY
+ IFCONST HELPRESET
245
+ LDX KBCODE
246
+ CPX #$11
247
+ BNE NOHELPRESET
248
+ JMP TIMB
249
+NOHELPRESET
250
+ ENDIF
251
; there is a key. do shift/ctrl keys
252
BIT KBCODE
253
BPL NOCTRL
kernal/editor.3
@@ -12,6 +12,7 @@ F3KEY = $FF
12
F4KEY = $FF
13
; keys that don't really map well to C64
14
HELPKEY = $FF
15
+HELPCODE = $11
16
LOGOKEY = $7E ; pi
17
TABKEY = $5F ; left arrow
18
CAPSKEY = $FF
0 commit comments