mirror of
https://github.com/TomHarte/CLK.git
synced 2026-03-03 13:24:53 +00:00
20 lines
393 B
C++
20 lines
393 B
C++
//
|
|
// StaticAnalyser.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 25/11/2017.
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "Analyser/Static/StaticAnalyser.hpp"
|
|
#include "Storage/TargetPlatforms.hpp"
|
|
#include <string>
|
|
|
|
namespace Analyser::Static::MSX {
|
|
|
|
TargetList GetTargets(const Media &, const std::string &, TargetPlatform::IntType, bool);
|
|
|
|
}
|