mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-02 16:04:59 +00:00
5287c57ee0
Albeit that there is no underlying machine yet.
33 lines
391 B
C++
33 lines
391 B
C++
//
|
|
// Machines.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 24/01/2018.
|
|
// Copyright 2018 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Machines_h
|
|
#define Machines_h
|
|
|
|
namespace Analyser {
|
|
|
|
enum class Machine {
|
|
AmstradCPC,
|
|
AppleII,
|
|
AppleIIgs,
|
|
Atari2600,
|
|
AtariST,
|
|
ColecoVision,
|
|
Electron,
|
|
Macintosh,
|
|
MasterSystem,
|
|
MSX,
|
|
Oric,
|
|
Vic20,
|
|
ZX8081
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* Machines_h */
|