mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
46 lines
835 B
C++
46 lines
835 B
C++
//
|
|
// Target.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 18/03/2021.
|
|
// Copyright © 2021 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Analyser_Static_ZXSpectrum_Target_h
|
|
#define Analyser_Static_ZXSpectrum_Target_h
|
|
|
|
#include "../../../Reflection/Enum.hpp"
|
|
#include "../../../Reflection/Struct.hpp"
|
|
#include "../StaticAnalyser.hpp"
|
|
|
|
namespace Analyser {
|
|
namespace Static {
|
|
namespace ZXSpectrum {
|
|
|
|
struct Target: public ::Analyser::Static::Target, public Reflection::StructImpl<Target> {
|
|
ReflectableEnum(Model,
|
|
SixteenK,
|
|
FortyEightK,
|
|
OneTwoEightK,
|
|
Plus2,
|
|
Plus2a,
|
|
Plus3,
|
|
);
|
|
|
|
Model model = Model::Plus2;
|
|
bool should_hold_enter = false;
|
|
|
|
Target(): Analyser::Static::Target(Machine::ZXSpectrum) {
|
|
if(needs_declare()) {
|
|
DeclareField(model);
|
|
AnnounceEnum(Model);
|
|
}
|
|
}
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* Target_h */
|