mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 23:32:28 +00:00
16 lines
295 B
C++
16 lines
295 B
C++
|
//
|
||
|
// Z80.cpp
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 25/04/2021.
|
||
|
// Copyright © 2021 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#include "Z80.hpp"
|
||
|
|
||
|
using namespace Storage::State;
|
||
|
|
||
|
std::unique_ptr<Analyser::Static::Target> Z80::load(const std::string &file_name) {
|
||
|
return nullptr;
|
||
|
}
|