mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 08:31:11 +00:00
31 lines
699 B
C++
31 lines
699 B
C++
//
|
|
// Target.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 03/06/2019.
|
|
// Copyright © 2019 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "../../../Reflection/Enum.hpp"
|
|
#include "../../../Reflection/Struct.hpp"
|
|
#include "../StaticAnalyser.hpp"
|
|
|
|
namespace Analyser::Static::Macintosh {
|
|
|
|
struct Target: public Analyser::Static::Target, public Reflection::StructImpl<Target> {
|
|
ReflectableEnum(Model, Mac128k, Mac512k, Mac512ke, MacPlus);
|
|
Model model = Model::MacPlus;
|
|
|
|
Target() : Analyser::Static::Target(Machine::Macintosh) {
|
|
// Boilerplate for declaring fields and potential values.
|
|
if(needs_declare()) {
|
|
DeclareField(model);
|
|
AnnounceEnum(Model);
|
|
}
|
|
}
|
|
};
|
|
|
|
}
|