2020-10-20 22:18:11 -04:00
|
|
|
//
|
|
|
|
// StaticAnalyser.cpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 20/10/2020.
|
|
|
|
// Copyright 2018 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "StaticAnalyser.hpp"
|
|
|
|
#include "Target.hpp"
|
|
|
|
|
2024-11-29 21:08:35 -05:00
|
|
|
Analyser::Static::TargetList Analyser::Static::AppleIIgs::GetTargets(
|
|
|
|
const Media &media,
|
|
|
|
const std::string &,
|
|
|
|
TargetPlatform::IntType
|
|
|
|
) {
|
2020-10-20 22:18:11 -04:00
|
|
|
auto target = std::make_unique<Target>();
|
|
|
|
target->media = media;
|
|
|
|
|
|
|
|
TargetList targets;
|
|
|
|
targets.push_back(std::move(target));
|
|
|
|
return targets;
|
|
|
|
}
|