mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
36 lines
571 B
C++
36 lines
571 B
C++
//
|
|
// Target.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 09/03/2018.
|
|
// Copyright 2018 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Analyser_Static_AmstradCPC_Target_h
|
|
#define Analyser_Static_AmstradCPC_Target_h
|
|
|
|
#include "../StaticAnalyser.hpp"
|
|
#include <string>
|
|
|
|
namespace Analyser {
|
|
namespace Static {
|
|
namespace AmstradCPC {
|
|
|
|
struct Target: public ::Analyser::Static::Target {
|
|
enum class Model {
|
|
CPC464,
|
|
CPC664,
|
|
CPC6128
|
|
};
|
|
|
|
Model model = Model::CPC464;
|
|
std::string loading_command;
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
#endif /* Analyser_Static_AmstradCPC_Target_h */
|