mirror of
https://github.com/TomHarte/CLK.git
synced 2026-01-23 16:16:16 +00:00
20 lines
402 B
C++
20 lines
402 B
C++
//
|
|
// CommodoreAnalyser.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 06/09/2016.
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "Analyser/Static/StaticAnalyser.hpp"
|
|
#include "Storage/TargetPlatforms.hpp"
|
|
#include <string>
|
|
|
|
namespace Analyser::Static::Commodore {
|
|
|
|
TargetList GetTargets(const Media &, const std::string &, TargetPlatform::IntType, bool);
|
|
|
|
}
|