summaryrefslogtreecommitdiff
path: root/src/video/signetics.c
diff options
context:
space:
mode:
authoralekseiplusplus <alekseijeaves@protonmail.com>2023-11-29 13:32:45 +1100
committeralekseiplusplus <alekseijeaves@protonmail.com>2023-11-29 13:32:45 +1100
commit8d3aaacf14997bbac177ae37ccab4618264cf29c (patch)
tree33cbf86fae08bc1bf97d5d38f1ac2ebebf6e7cd0 /src/video/signetics.c
parentcbd011fe442dfb520de7b51b61e9c4ef1eacae2f (diff)
work on peripherals and display
Diffstat (limited to 'src/video/signetics.c')
-rw-r--r--src/video/signetics.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/video/signetics.c b/src/video/signetics.c
index c6dca10..4a996d8 100644
--- a/src/video/signetics.c
+++ b/src/video/signetics.c
@@ -16,20 +16,3 @@ const byte* TerminalShiftRegister;
byte* TerminalShiftRegisterPosition;
int TerminalShiftRegisterOffset;
-
-byte ToAppleASCII(char x)
-{
- if (x < 0x20 || x >= 0x60)
- return -1;
- if (x >= 0x40)
- x -= 0x40;
- return x;
-}
-
-byte ToRegularASCII(char x)
-{
- if (x < 0x20)
- x += 0x40;
- return x;
-}
-