mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
5287c57ee0
Albeit that there is no underlying machine yet.
51 lines
976 B
C++
51 lines
976 B
C++
//
|
|
// Target.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 21/04/2018.
|
|
// Copyright 2018 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Analyser_Static_AppleII_Target_h
|
|
#define Analyser_Static_AppleII_Target_h
|
|
|
|
#include "../../../Reflection/Enum.hpp"
|
|
#include "../../../Reflection/Struct.hpp"
|
|
#include "../StaticAnalyser.hpp"
|
|
|
|
namespace Analyser {
|
|
namespace Static {
|
|
namespace AppleII {
|
|
|
|
struct Target: public Analyser::Static::Target, public Reflection::StructImpl<Target> {
|
|
ReflectableEnum(Model,
|
|
II,
|
|
IIplus,
|
|
IIe,
|
|
EnhancedIIe
|
|
);
|
|
ReflectableEnum(DiskController,
|
|
None,
|
|
SixteenSector,
|
|
ThirteenSector
|
|
);
|
|
|
|
Model model = Model::IIe;
|
|
DiskController disk_controller = DiskController::None;
|
|
|
|
Target() : Analyser::Static::Target(Machine::AppleII) {
|
|
if(needs_declare()) {
|
|
DeclareField(model);
|
|
DeclareField(disk_controller);
|
|
AnnounceEnum(Model);
|
|
AnnounceEnum(DiskController);
|
|
}
|
|
}
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* Analyser_Static_AppleII_Target_h */
|