diff options
author | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-12-01 08:21:14 +1100 |
---|---|---|
committer | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-12-01 08:21:14 +1100 |
commit | 9ecaf2877f93664497110edf256fbc7825cd30f9 (patch) | |
tree | 959929f9d3b9a23a7a788d64f72fac367505e403 /src/video/signetics.c | |
parent | 88e6422ec31938fbff7b4fb9c5ddf63fc9f14a09 (diff) |
stuck at number parsing inf. loop error
Diffstat (limited to 'src/video/signetics.c')
-rw-r--r-- | src/video/signetics.c | 20 |
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; |