mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-26 08:49:37 +00:00
27 lines
320 B
C++
27 lines
320 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,
|
||
|
Atari2600,
|
||
|
Electron,
|
||
|
MSX,
|
||
|
Oric,
|
||
|
Vic20,
|
||
|
ZX8081
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif /* Machines_h */
|