1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-21 17:16:44 +00:00

Adds an empty vessel for .z80 support.

This commit is contained in:
Thomas Harte
2021-04-25 16:54:34 -04:00
parent 205518ba75
commit 03577de675
5 changed files with 70 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
//
// 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;
}