1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 19:17:52 +00:00

Performs boilerplate towards a ZX Spectrum class.

This commit is contained in:
Thomas Harte
2021-03-17 23:38:55 -04:00
parent b7d6b8efcf
commit 5a1bda1d82
6 changed files with 79 additions and 0 deletions
+2
View File
@@ -24,6 +24,7 @@
#include "../MSX/MSX.hpp"
#include "../Oric/Oric.hpp"
#include "../Sinclair/ZX8081/ZX8081.hpp"
#include "../Sinclair/ZXSpectrum/ZXSpectrum.hpp"
// Sources for construction options.
#include "../../Analyser/Static/Acorn/Target.hpp"
@@ -63,6 +64,7 @@ Machine::DynamicMachine *Machine::MachineForTarget(const Analyser::Static::Targe
Bind(Oric)
BindD(Sega::MasterSystem, MasterSystem)
BindD(Sinclair::ZX8081, ZX8081)
BindD(Sinclair::ZXSpectrum, ZXSpectrum)
default:
error = Machine::Error::UnknownMachine;