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
lda key
and #$1f ; control-space should generate 0, not $20.
bra :send
:notctrl
@ -199,6 +200,7 @@ digit
lda #'?'
jsr dispatch
lda key
ora #$40
jmp dispatch