2018-01-24 21:48:44 -05:00
|
|
|
//
|
|
|
|
// Machines.h
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 24/01/2018.
|
2018-05-13 15:19:52 -04:00
|
|
|
// Copyright 2018 Thomas Harte. All rights reserved.
|
2018-01-24 21:48:44 -05:00
|
|
|
//
|
|
|
|
|
2024-01-16 23:34:46 -05:00
|
|
|
#pragma once
|
2018-01-24 21:48:44 -05:00
|
|
|
|
|
|
|
namespace Analyser {
|
|
|
|
|
|
|
|
enum class Machine {
|
|
|
|
AmstradCPC,
|
2018-04-14 19:46:15 -04:00
|
|
|
AppleII,
|
2020-10-20 22:18:11 -04:00
|
|
|
AppleIIgs,
|
2018-01-24 21:48:44 -05:00
|
|
|
Atari2600,
|
2019-10-03 20:17:26 -04:00
|
|
|
AtariST,
|
2021-07-16 17:59:08 -04:00
|
|
|
Amiga,
|
2024-03-04 10:13:57 -05:00
|
|
|
Archimedes,
|
2018-02-23 22:47:15 -05:00
|
|
|
ColecoVision,
|
2018-01-24 21:48:44 -05:00
|
|
|
Electron,
|
2021-06-14 20:55:39 -04:00
|
|
|
Enterprise,
|
2019-05-03 22:16:07 -04:00
|
|
|
Macintosh,
|
2018-09-20 22:04:28 -04:00
|
|
|
MasterSystem,
|
2018-01-24 21:48:44 -05:00
|
|
|
MSX,
|
|
|
|
Oric,
|
2024-12-02 15:27:23 -05:00
|
|
|
Plus4,
|
2023-11-15 11:01:28 -05:00
|
|
|
PCCompatible,
|
2018-01-24 21:48:44 -05:00
|
|
|
Vic20,
|
2021-03-17 22:09:44 -04:00
|
|
|
ZX8081,
|
|
|
|
ZXSpectrum,
|
2018-01-24 21:48:44 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|