1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-07 23:29:06 +00:00
CLK/StaticAnalyser/StaticAnalyser.cpp

31 lines
460 B
C++
Raw Normal View History

//
// StaticAnalyser.cpp
// Clock Signal
//
// Created by Thomas Harte on 23/08/2016.
// Copyright © 2016 Thomas Harte. All rights reserved.
//
#include "StaticAnalyser.hpp"
2016-08-27 17:42:51 +00:00
using namespace StaticAnalyser;
std::list<Target> GetTargets(std::shared_ptr<Storage::Disk> disk, std::shared_ptr<Storage::Tape> tape, std::shared_ptr<std::vector<uint8_t>> rom)
{
std::list<Target> targets;
if(disk)
{
}
if(tape)
{
}
if(rom)
{
}
return targets;
}