From 7a5672d085399d0de9d2c77431ea7a2f089faacb Mon Sep 17 00:00:00 2001 From: alekseiplusplus Date: Fri, 1 Dec 2023 20:16:40 +1100 Subject: handling DSP differently --- src/apple.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/apple.c b/src/apple.c index 18f1763..5ef87f6 100644 --- a/src/apple.c +++ b/src/apple.c @@ -92,7 +92,8 @@ void SetMemory(address x, byte y){ switch(x) { case DSP: - DisplayInput(y); + if (y & 0x80) + DisplayInput(y); } if (x < MEMORY_SIZE) { Memory[x] = y; -- cgit v1.2.3