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