2018-04-14 12:12:12 -04:00
|
|
|
//
|
|
|
|
// StaticAnalyser.hpp
|
|
|
|
// 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
|
|
|
//
|
|
|
|
|
2024-01-16 23:34:46 -05:00
|
|
|
#pragma once
|
2018-04-14 12:12:12 -04:00
|
|
|
|
|
|
|
#include "../StaticAnalyser.hpp"
|
|
|
|
#include "../../../Storage/TargetPlatforms.hpp"
|
|
|
|
#include <string>
|
|
|
|
|
2023-05-10 16:02:18 -05:00
|
|
|
namespace Analyser::Static::AppleII {
|
2018-04-14 12:12:12 -04:00
|
|
|
|
2024-11-29 21:08:35 -05:00
|
|
|
TargetList GetTargets(const Media &, const std::string &file_name, TargetPlatform::IntType potential_platforms);
|
2018-04-14 12:12:12 -04:00
|
|
|
|
|
|
|
}
|