From 9cf52cb34ec4119dd9257521c0a90c989036946f Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Fri, 28 Jan 2022 22:12:37 -0500 Subject: [PATCH] vttest fixes 1. control-space should generate a null character 2. vt52 application mode keys were off. --- vt100.key.S | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vt100.key.S b/vt100.key.S index 409064c..f3f9f81 100644 --- a/vt100.key.S +++ b/vt100.key.S @@ -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