1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-17 13:29:02 +00:00
CLK/Analyser/Static/Commodore/Target.hpp

34 lines
506 B
C++
Raw Normal View History

2018-03-09 21:10:17 +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 Commodore {
struct Target: public ::Analyser::Static::Target {
enum class MemoryModel {
Unexpanded,
EightKB,
ThirtyTwoKB
};
MemoryModel memory_model = MemoryModel::Unexpanded;
bool has_c1540 = false;
2018-03-09 21:10:17 +00:00
};
}
}
}
#endif /* Target_h */