mirror of
https://github.com/TomHarte/CLK.git
synced 2026-01-25 15:16:07 +00:00
25 lines
496 B
C++
25 lines
496 B
C++
//
|
|
// 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"
|
|
|
|
Analyser::Static::TargetList Analyser::Static::AppleIIgs::GetTargets(
|
|
const Media &media,
|
|
const std::string &,
|
|
TargetPlatform::IntType,
|
|
bool
|
|
) {
|
|
auto target = std::make_unique<Target>();
|
|
target->media = media;
|
|
|
|
TargetList targets;
|
|
targets.push_back(std::move(target));
|
|
return targets;
|
|
}
|