diff options
Diffstat (limited to 'src/video/signetics.c')
-rw-r--r-- | src/video/signetics.c | 17 |
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; -} - |