1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-01-14 13:33:42 +00:00
CLK/Storage/State/Z80.hpp

20 lines
339 B
C++
Raw Normal View History

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