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