From 9ecaf2877f93664497110edf256fbc7825cd30f9 Mon Sep 17 00:00:00 2001 From: alekseiplusplus Date: Fri, 1 Dec 2023 08:21:14 +1100 Subject: stuck at number parsing inf. loop error --- src/video/signetics.c | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 src/video/signetics.c (limited to 'src/video/signetics.c') diff --git a/src/video/signetics.c b/src/video/signetics.c deleted file mode 100644 index 3dd279b..0000000 --- a/src/video/signetics.c +++ /dev/null @@ -1,20 +0,0 @@ -// signetics.c -// Signetics refers to the various Signetics brand chips which the Apple I came with, including a character ROM, and a shift-register based video memory. -// Intended to be included during pre-processing into the .c of the used video library. - -const byte SigneticsROM[0x40] = { - '@' , 'A' , 'B' , 'C' , 'D' , 'E' , 'F' , 'G' , 'H' , 'I' , 'J' , 'K' , 'L' , 'M' , 'N' , 'O' , - 'P' , 'Q' , 'R' , 'S' , 'T' , 'U' , 'V' , 'W' , 'X' , 'Y' , 'Z' , '[' , '\\', ']' , '^' , '_' , - ' ' , '!' , '"' , '#' , '$' , '%' , '&' , '\'', '(' , ')' , '*' , '+' , ',' , '-' , '.' , '/' , - '0' , '1' , '2' , '3' , '4' , '5' , '6' , '7' , '8' , '9' , ':' , ';' , '<' , '=' , '>' , '?' -}; - -byte CharacterROM(byte x) { - return SigneticsROM[ x & 0b01111111 ]; -} - -const byte* TerminalShiftRegister; - -byte* TerminalShiftRegisterPosition; - -int TerminalShiftRegisterOffset; -- cgit v1.2.3