mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-06 12:07:57 +00:00
34 lines
468 B
C++
34 lines
468 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;
|
||
|
bool isZX81;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif /* Target_h */
|