2016-09-15 23:34:45 +00:00
|
|
|
//
|
|
|
|
// StaticAnalyser.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
2019-10-04 02:10:10 +00:00
|
|
|
// Created by Thomas Harte on 03/10/2019.
|
|
|
|
// Copyright © 2019 Thomas Harte. All rights reserved.
|
2016-09-15 23:34:45 +00:00
|
|
|
//
|
|
|
|
|
2024-01-17 04:34:46 +00:00
|
|
|
#pragma once
|
2016-09-15 23:34:45 +00:00
|
|
|
|
|
|
|
#include "../StaticAnalyser.hpp"
|
2018-04-14 16:12:12 +00:00
|
|
|
#include "../../../Storage/TargetPlatforms.hpp"
|
|
|
|
#include <string>
|
2016-09-15 23:34:45 +00:00
|
|
|
|
2023-05-10 21:02:18 +00:00
|
|
|
namespace Analyser::Static::AtariST {
|
2016-09-15 23:34:45 +00:00
|
|
|
|
2018-04-14 16:12:12 +00:00
|
|
|
TargetList GetTargets(const Media &media, const std::string &file_name, TargetPlatform::IntType potential_platforms);
|
2016-09-15 23:34:45 +00:00
|
|
|
|
2018-01-25 02:48:44 +00:00
|
|
|
}
|