diff options
author | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-12-01 20:16:40 +1100 |
---|---|---|
committer | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-12-01 20:16:40 +1100 |
commit | 7a5672d085399d0de9d2c77431ea7a2f089faacb (patch) | |
tree | 12544068ed39547f8090b2689ede4daf3605fb5c /src | |
parent | 0ba0d793ca60189fa8378399d32d6299a1dd9db5 (diff) |
handling DSP differently
Diffstat (limited to 'src')
-rw-r--r-- | src/apple.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; |