summaryrefslogtreecommitdiff
path: root/src/video/signetics.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/video/signetics.c')
-rw-r--r--src/video/signetics.c20
1 files changed, 0 insertions, 20 deletions
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;