Skip to content

Commit ca01976

Browse files
committed
added HELPRESET option for XEX version
1 parent 2751584 commit ca01976

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

kernal/editor.2

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,13 @@ SCNKEY LDA #$00
241241
BEQ SCNOUT ;BRANCH IF NONE
242242
LDA #0
243243
STA STKEY ; clear stop key
244-
TAY
244+
IFCONST HELPRESET
245+
LDX KBCODE
246+
CPX #$11
247+
BNE NOHELPRESET
248+
JMP TIMB
249+
NOHELPRESET
250+
ENDIF
245251
; there is a key. do shift/ctrl keys
246252
BIT KBCODE
247253
BPL NOCTRL

kernal/editor.3

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ F3KEY = $FF
1212
F4KEY = $FF
1313
; keys that don't really map well to C64
1414
HELPKEY = $FF
15+
HELPCODE = $11
1516
LOGOKEY = $7E ; pi
1617
TABKEY = $5F ; left arrow
1718
CAPSKEY = $FF

0 commit comments

Comments
 (0)