1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-01 22:41:32 +00:00
CLK/Storage/State/Z80.hpp
2024-01-16 23:34:46 -05:00

20 lines
339 B
C++

//
// Z80.hpp
// Clock Signal
//
// Created by Thomas Harte on 25/04/2021.
// Copyright © 2021 Thomas Harte. All rights reserved.
//
#pragma once
#include "../../Analyser/Static/StaticAnalyser.hpp"
namespace Storage::State {
struct Z80 {
static std::unique_ptr<Analyser::Static::Target> load(const std::string &file_name);
};
}