1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-04-06 10:38:16 +00:00

Add a model field.

This commit is contained in:
Thomas Harte 2023-01-10 14:52:09 -05:00
parent 19e333d117
commit 6e0f260478

View File

@ -22,6 +22,12 @@ struct Target: public ::Analyser::Static::Target, public Reflection::StructImpl<
bool has_disk_drive = false;
std::string loading_command;
ReflectableEnum(Model,
MSX1,
MSX2
);
Model model = Model::MSX1;
ReflectableEnum(Region,
Japan,
USA,
@ -34,6 +40,8 @@ struct Target: public ::Analyser::Static::Target, public Reflection::StructImpl<
DeclareField(has_disk_drive);
DeclareField(region);
AnnounceEnum(Region);
DeclareField(model);
AnnounceEnum(Model);
}
}
};