mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-22 12:33:29 +00:00
40 lines
938 B
C++
40 lines
938 B
C++
//
|
|
// Target.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 09/03/2018.
|
|
// Copyright 2018 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "../../../Reflection/Enum.hpp"
|
|
#include "../../../Reflection/Struct.hpp"
|
|
#include "../StaticAnalyser.hpp"
|
|
#include <string>
|
|
|
|
namespace Analyser::Static::AmstradCPC {
|
|
|
|
struct Target: public Analyser::Static::Target, public Reflection::StructImpl<Target> {
|
|
ReflectableEnum(Model, CPC464, CPC664, CPC6128);
|
|
Model model = Model::CPC464;
|
|
std::string loading_command;
|
|
|
|
ReflectableEnum(CRTCType, Type0, Type1, Type2, Type3);
|
|
CRTCType crtc_type = CRTCType::Type2;
|
|
|
|
// This is used internally for testing; it therefore isn't exposed reflectively.
|
|
bool catch_ssm_codes = false;
|
|
|
|
Target() : Analyser::Static::Target(Machine::AmstradCPC) {
|
|
if(needs_declare()) {
|
|
DeclareField(model);
|
|
DeclareField(crtc_type);
|
|
AnnounceEnum(Model);
|
|
AnnounceEnum(CRTCType);
|
|
}
|
|
}
|
|
};
|
|
|
|
}
|