From 8d3aaacf14997bbac177ae37ccab4618264cf29c Mon Sep 17 00:00:00 2001 From: alekseiplusplus Date: Wed, 29 Nov 2023 13:32:45 +1100 Subject: work on peripherals and display --- src/video/signetics.c | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'src/video/signetics.c') 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; -} - -- cgit v1.2.3