1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-20 10:17:05 +00:00

Attempts to hatch a Sinclair namespace.

This commit is contained in:
Thomas Harte
2021-03-17 22:40:29 -04:00
parent 0ddf09ac0f
commit b63ca16ce2
12 changed files with 61 additions and 59 deletions
+3 -3
View File
@@ -23,7 +23,7 @@
#include "../MasterSystem/MasterSystem.hpp"
#include "../MSX/MSX.hpp"
#include "../Oric/Oric.hpp"
#include "../ZX8081/ZX8081.hpp"
#include "../Sinclair/ZX8081/ZX8081.hpp"
// Sources for construction options.
#include "../../Analyser/Static/Acorn/Target.hpp"
@@ -62,7 +62,7 @@ Machine::DynamicMachine *Machine::MachineForTarget(const Analyser::Static::Targe
Bind(MSX)
Bind(Oric)
BindD(Sega::MasterSystem, MasterSystem)
Bind(ZX8081)
BindD(Sinclair::ZX8081, ZX8081)
default:
error = Machine::Error::UnknownMachine;
@@ -200,7 +200,7 @@ std::map<std::string, std::unique_ptr<Reflection::Struct>> Machine::AllOptionsBy
Emplace(MSX, MSX::Machine);
Emplace(Oric, Oric::Machine);
Emplace(Vic20, Commodore::Vic20::Machine);
Emplace(ZX8081, ZX8081::Machine);
Emplace(ZX8081, Sinclair::ZX8081::Machine);
#undef Emplace