mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-26 23:52:26 +00:00
34 lines
502 B
C++
34 lines
502 B
C++
//
|
|
// Target.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 09/03/2018.
|
|
// Copyright © 2018 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Target_h
|
|
#define Target_h
|
|
|
|
#include "../StaticAnalyser.hpp"
|
|
|
|
namespace Analyser {
|
|
namespace Static {
|
|
namespace ZX8081 {
|
|
|
|
struct Target: public ::Analyser::Static::Target {
|
|
enum class MemoryModel {
|
|
Unexpanded,
|
|
SixteenKB,
|
|
SixtyFourKB
|
|
};
|
|
|
|
MemoryModel memory_model = MemoryModel::Unexpanded;
|
|
bool isZX81 = false;
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* Target_h */
|