vttest fixes

1. control-space should generate a null character
2. vt52 application mode keys were off.
This commit is contained in:
Kelvin Sherlock 2022-01-28 22:12:37 -05:00
parent 186d71de47
commit 9cf52cb34e
1 changed files with 2 additions and 0 deletions

View File

@ -59,6 +59,7 @@ keypress ent
:ctrl :ctrl
lda key lda key
and #$1f ; control-space should generate 0, not $20.
bra :send bra :send
:notctrl :notctrl
@ -199,6 +200,7 @@ digit
lda #'?' lda #'?'
jsr dispatch jsr dispatch
lda key lda key
ora #$40
jmp dispatch jmp dispatch