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-02-17 23:08:46 +00:00
|
|
|
#include "../../../Reflection/Enum.h"
|
2020-03-10 02:05:31 +00:00
|
|
|
#include "../../../Reflection/Struct.h"
|
2020-02-17 23:08:46 +00:00
|
|
|
|
2019-06-03 18:50:36 +00:00
|
|
|
namespace Analyser {
|
|
|
|
namespace Static {
|
|
|
|
namespace Macintosh {
|
|
|
|
|
2020-03-10 02:05:31 +00:00
|
|
|
struct Target: public ::Analyser::Static::Target, public Reflection::Struct<Target> {
|
|
|
|
ReflectableEnum(Model, int, Mac128k, Mac512k, Mac512ke, MacPlus);
|
2020-02-20 03:26:31 +00:00
|
|
|
|
|
|
|
Target() {
|
2020-03-10 02:05:31 +00:00
|
|
|
// Boilerplate for declaring fields and potential values.
|
|
|
|
if(needs_declare()) {
|
|
|
|
declare(&model, "model");
|
|
|
|
declare_enum(&model, EnumDeclaration(Model));
|
|
|
|
}
|
2020-02-20 03:26:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Model model = Model::MacPlus;
|
2019-06-03 18:50:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* Analyser_Static_Macintosh_Target_h */
|