mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-05 06:05:27 +00:00
35 lines
775 B
C++
35 lines
775 B
C++
//
|
|
// Target.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 03/06/2019.
|
|
// Copyright © 2019 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Analyser_Static_AtariST_Target_h
|
|
#define Analyser_Static_AtariST_Target_h
|
|
|
|
#include "../../../Reflection/Struct.hpp"
|
|
#include "../StaticAnalyser.hpp"
|
|
|
|
namespace Analyser::Static::AtariST {
|
|
|
|
struct Target: public Analyser::Static::Target, public Reflection::StructImpl<Target> {
|
|
ReflectableEnum(MemorySize,
|
|
FiveHundredAndTwelveKilobytes,
|
|
OneMegabyte,
|
|
FourMegabytes);
|
|
MemorySize memory_size = MemorySize::OneMegabyte;
|
|
|
|
Target() : Analyser::Static::Target(Machine::AtariST) {
|
|
if(needs_declare()) {
|
|
DeclareField(memory_size);
|
|
AnnounceEnum(MemorySize);
|
|
}
|
|
}
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* Analyser_Static_AtariST_Target_h */
|