2018-03-09 21:10:17 +00:00
|
|
|
//
|
|
|
|
// Target.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 09/03/2018.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2018 Thomas Harte. All rights reserved.
|
2018-03-09 21:10:17 +00:00
|
|
|
//
|
|
|
|
|
2018-04-03 02:42:41 +00:00
|
|
|
#ifndef Analyser_Static_Commodore_Target_h
|
|
|
|
#define Analyser_Static_Commodore_Target_h
|
2018-03-09 21:10:17 +00:00
|
|
|
|
|
|
|
#include "../StaticAnalyser.hpp"
|
2018-04-14 16:12:12 +00:00
|
|
|
#include <string>
|
2018-03-09 21:10:17 +00:00
|
|
|
|
|
|
|
namespace Analyser {
|
|
|
|
namespace Static {
|
|
|
|
namespace Commodore {
|
|
|
|
|
|
|
|
struct Target: public ::Analyser::Static::Target {
|
|
|
|
enum class MemoryModel {
|
|
|
|
Unexpanded,
|
|
|
|
EightKB,
|
|
|
|
ThirtyTwoKB
|
|
|
|
};
|
|
|
|
|
2018-03-26 23:01:57 +00:00
|
|
|
enum class Region {
|
|
|
|
American,
|
|
|
|
Danish,
|
|
|
|
Japanese,
|
|
|
|
European,
|
|
|
|
Swedish
|
|
|
|
};
|
|
|
|
|
2018-03-23 01:58:42 +00:00
|
|
|
MemoryModel memory_model = MemoryModel::Unexpanded;
|
2018-03-26 23:01:57 +00:00
|
|
|
Region region = Region::European;
|
2018-03-23 01:58:42 +00:00
|
|
|
bool has_c1540 = false;
|
2018-04-14 16:12:12 +00:00
|
|
|
std::string loading_command;
|
2018-03-09 21:10:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-03 02:42:41 +00:00
|
|
|
#endif /* Analyser_Static_Commodore_Target_h */
|