2018-04-22 04:21:57 +00:00
|
|
|
//
|
|
|
|
// Target.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 21/04/2018.
|
|
|
|
// Copyright © 2018 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef Target_h
|
|
|
|
#define Target_h
|
|
|
|
|
|
|
|
#include "../StaticAnalyser.hpp"
|
|
|
|
|
|
|
|
namespace Analyser {
|
|
|
|
namespace Static {
|
|
|
|
namespace AppleII {
|
|
|
|
|
|
|
|
struct Target: public ::Analyser::Static::Target {
|
2018-05-03 23:37:32 +00:00
|
|
|
enum class Model {
|
|
|
|
II,
|
|
|
|
IIplus
|
|
|
|
};
|
|
|
|
enum class DiskController {
|
|
|
|
None,
|
|
|
|
SixteenSector,
|
|
|
|
ThirteenSector
|
|
|
|
};
|
|
|
|
|
|
|
|
Model model = Model::IIplus;
|
|
|
|
DiskController disk_controller = DiskController::None;
|
2018-04-22 04:21:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* Target_h */
|