2018-04-14 12:12:12 -04:00
|
|
|
//
|
|
|
|
// StaticAnalyser.cpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 14/04/2018.
|
2018-05-13 15:19:52 -04:00
|
|
|
// Copyright 2018 Thomas Harte. All rights reserved.
|
2018-04-14 12:12:12 -04:00
|
|
|
//
|
|
|
|
|
|
|
|
#include "StaticAnalyser.hpp"
|
2018-04-21 21:21:57 -07:00
|
|
|
#include "Target.hpp"
|
2018-04-14 12:12:12 -04:00
|
|
|
|
2020-05-30 00:47:43 -04:00
|
|
|
Analyser::Static::TargetList Analyser::Static::AppleII::GetTargets(const Media &media, const std::string &, TargetPlatform::IntType) {
|
2019-12-21 23:34:25 -05:00
|
|
|
auto target = std::make_unique<Target>();
|
2018-04-21 21:21:57 -07:00
|
|
|
target->media = media;
|
|
|
|
|
2018-05-03 19:37:32 -04:00
|
|
|
if(!target->media.disks.empty())
|
|
|
|
target->disk_controller = Target::DiskController::SixteenSector;
|
2018-04-23 21:14:45 -07:00
|
|
|
|
2018-04-21 21:21:57 -07:00
|
|
|
TargetList targets;
|
|
|
|
targets.push_back(std::move(target));
|
|
|
|
return targets;
|
2018-04-14 12:12:12 -04:00
|
|
|
}
|