1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-07-24 22:24:23 +00:00

Starts adding the Spectrum to the static analyser.

This commit is contained in:
Thomas Harte
2021-03-17 12:38:37 -04:00
parent 14c5e038e2
commit b447f5f174
5 changed files with 84 additions and 26 deletions

View File

@@ -26,7 +26,7 @@ enum Type: IntType {
BBCMaster = 1 << 7,
BBCModelA = 1 << 8,
BBCModelB = 1 << 9,
ColecoVision = 1 << 10,
Coleco = 1 << 10,
Commodore = 1 << 11,
DiskII = 1 << 12,
Sega = 1 << 13,
@@ -35,12 +35,13 @@ enum Type: IntType {
Oric = 1 << 16,
ZX80 = 1 << 17,
ZX81 = 1 << 18,
ZXSpectrum = 1 << 19,
Acorn = AcornAtom | AcornElectron | BBCMaster | BBCModelA | BBCModelB,
ZX8081 = ZX80 | ZX81,
AllCartridge = Atari2600 | AcornElectron | ColecoVision | MSX,
AllCartridge = Atari2600 | AcornElectron | Coleco | MSX,
AllDisk = Acorn | AmstradCPC | Commodore | Oric | MSX, // TODO: | AtariST
AllTape = Acorn | AmstradCPC | Commodore | Oric | ZX80 | ZX81 | MSX,
AllTape = Acorn | AmstradCPC | Commodore | Oric | ZX80 | ZX81 | MSX | ZXSpectrum,
};
class TypeDistinguisher {