2017-06-04 21:04:06 +00:00
|
|
|
//
|
|
|
|
// StaticAnalyser.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 04/06/2017.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
2017-06-04 21:04:06 +00:00
|
|
|
//
|
|
|
|
|
2018-04-14 16:12:12 +00:00
|
|
|
#ifndef Analyser_Static_ZX8081_StaticAnalyser_hpp
|
|
|
|
#define Analyser_Static_ZX8081_StaticAnalyser_hpp
|
2017-06-04 21:04:06 +00:00
|
|
|
|
|
|
|
#include "../StaticAnalyser.hpp"
|
2018-01-25 02:48:44 +00:00
|
|
|
#include "../../../Storage/TargetPlatforms.hpp"
|
2018-04-14 16:12:12 +00:00
|
|
|
#include <string>
|
2017-06-04 21:04:06 +00:00
|
|
|
|
2018-01-25 02:48:44 +00:00
|
|
|
namespace Analyser {
|
|
|
|
namespace Static {
|
2017-06-04 21:04:06 +00:00
|
|
|
namespace ZX8081 {
|
|
|
|
|
2018-04-14 16:12:12 +00:00
|
|
|
TargetList GetTargets(const Media &media, const std::string &file_name, TargetPlatform::IntType potential_platforms);
|
2017-06-04 21:04:06 +00:00
|
|
|
|
2018-01-25 02:48:44 +00:00
|
|
|
}
|
2017-06-04 21:04:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* StaticAnalyser_hpp */
|