2018-03-09 20:36:11 +00:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
};
|
|
|
|
|
2018-03-23 01:58:42 +00:00
|
|
|
MemoryModel memory_model = MemoryModel::Unexpanded;
|
|
|
|
bool isZX81 = false;
|
2018-03-09 20:36:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* Target_h */
|