mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
48 lines
987 B
C++
48 lines
987 B
C++
//
|
|
// Target.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 09/03/2018.
|
|
// Copyright 2018 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Analyser_Static_ZX8081_Target_h
|
|
#define Analyser_Static_ZX8081_Target_h
|
|
|
|
#include "../../../Reflection/Enum.hpp"
|
|
#include "../../../Reflection/Struct.hpp"
|
|
#include "../StaticAnalyser.hpp"
|
|
#include <string>
|
|
|
|
namespace Analyser {
|
|
namespace Static {
|
|
namespace ZX8081 {
|
|
|
|
struct Target: public ::Analyser::Static::Target, public Reflection::StructImpl<Target> {
|
|
ReflectableEnum(MemoryModel,
|
|
Unexpanded,
|
|
SixteenKB,
|
|
SixtyFourKB
|
|
);
|
|
|
|
MemoryModel memory_model = MemoryModel::Unexpanded;
|
|
bool is_ZX81 = false;
|
|
bool ZX80_uses_ZX81_ROM = false;
|
|
std::string loading_command;
|
|
|
|
Target(): Analyser::Static::Target(Machine::ZX8081) {
|
|
if(needs_declare()) {
|
|
DeclareField(memory_model);
|
|
DeclareField(is_ZX81);
|
|
DeclareField(ZX80_uses_ZX81_ROM);
|
|
AnnounceEnum(MemoryModel);
|
|
}
|
|
}
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* Analyser_Static_ZX8081_Target_h */
|