2018-04-03 02:42:41 +00:00
|
|
|
//
|
|
|
|
// Target.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 02/04/2018.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2018 Thomas Harte. All rights reserved.
|
2018-04-03 02:42:41 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef Analyser_Static_MSX_Target_h
|
|
|
|
#define Analyser_Static_MSX_Target_h
|
|
|
|
|
2020-03-20 03:24:06 +00:00
|
|
|
#include "../../../Reflection/Enum.hpp"
|
|
|
|
#include "../../../Reflection/Struct.hpp"
|
2018-04-03 02:42:41 +00:00
|
|
|
#include "../StaticAnalyser.hpp"
|
2018-04-14 16:12:12 +00:00
|
|
|
#include <string>
|
2018-04-03 02:42:41 +00:00
|
|
|
|
|
|
|
namespace Analyser {
|
|
|
|
namespace Static {
|
|
|
|
namespace MSX {
|
|
|
|
|
2020-03-13 00:56:02 +00:00
|
|
|
struct Target: public ::Analyser::Static::Target, public Reflection::StructImpl<Target> {
|
2018-04-03 02:42:41 +00:00
|
|
|
bool has_disk_drive = false;
|
2018-04-14 16:12:12 +00:00
|
|
|
std::string loading_command;
|
2019-03-01 01:54:43 +00:00
|
|
|
|
2020-03-12 03:28:38 +00:00
|
|
|
ReflectableEnum(Region,
|
2019-03-01 01:54:43 +00:00
|
|
|
Japan,
|
|
|
|
USA,
|
|
|
|
Europe
|
2020-03-12 03:25:29 +00:00
|
|
|
);
|
|
|
|
Region region = Region::USA;
|
|
|
|
|
2020-03-15 04:13:38 +00:00
|
|
|
Target(): Analyser::Static::Target(Machine::MSX) {
|
2020-03-12 03:25:29 +00:00
|
|
|
if(needs_declare()) {
|
|
|
|
DeclareField(has_disk_drive);
|
|
|
|
DeclareField(region);
|
|
|
|
AnnounceEnum(Region);
|
|
|
|
}
|
|
|
|
}
|
2018-04-03 02:42:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* Analyser_Static_MSX_Target_h */
|