2019-06-03 18:50:36 +00:00
|
|
|
//
|
|
|
|
// Target.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 03/06/2019.
|
|
|
|
// Copyright © 2019 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef Analyser_Static_Macintosh_Target_h
|
|
|
|
#define Analyser_Static_Macintosh_Target_h
|
|
|
|
|
2020-03-20 03:24:06 +00:00
|
|
|
#include "../../../Reflection/Enum.hpp"
|
|
|
|
#include "../../../Reflection/Struct.hpp"
|
2020-03-20 01:46:42 +00:00
|
|
|
#include "../StaticAnalyser.hpp"
|
2020-02-17 23:08:46 +00:00
|
|
|
|
2019-06-03 18:50:36 +00:00
|
|
|
namespace Analyser {
|
|
|
|
namespace Static {
|
|
|
|
namespace Macintosh {
|
|
|
|
|
2020-03-15 04:13:38 +00:00
|
|
|
struct Target: public Analyser::Static::Target, public Reflection::StructImpl<Target> {
|
2020-03-12 03:28:38 +00:00
|
|
|
ReflectableEnum(Model, Mac128k, Mac512k, Mac512ke, MacPlus);
|
2020-03-12 03:25:29 +00:00
|
|
|
Model model = Model::MacPlus;
|
2020-02-20 03:26:31 +00:00
|
|
|
|
2020-03-15 04:13:38 +00:00
|
|
|
Target() : Analyser::Static::Target(Machine::Macintosh) {
|
2020-03-10 02:05:31 +00:00
|
|
|
// Boilerplate for declaring fields and potential values.
|
|
|
|
if(needs_declare()) {
|
2020-03-12 03:25:29 +00:00
|
|
|
DeclareField(model);
|
2020-03-12 02:06:16 +00:00
|
|
|
AnnounceEnum(Model);
|
2020-03-10 02:05:31 +00:00
|
|
|
}
|
2020-02-20 03:26:31 +00:00
|
|
|
}
|
2019-06-03 18:50:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* Analyser_Static_Macintosh_Target_h */
|