1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-25 11:17:26 +00:00

Relocated the ZX80/81 concept of a 'file' out from Tape into Data, given that it's an exact duplicate of memory.

This commit is contained in:
Thomas Harte
2017-06-08 19:09:51 -04:00
parent c47128f433
commit 7e10c7f9d8
6 changed files with 69 additions and 24 deletions
+13
View File
@@ -0,0 +1,13 @@
//
// ZX8081.cpp
// Clock Signal
//
// Created by Thomas Harte on 08/06/2017.
// Copyright © 2017 Thomas Harte. All rights reserved.
//
#include "ZX8081.hpp"
std::shared_ptr<Storage::Data::ZX8081::File> Storage::Data::ZX8081::FileFromData(const std::vector<uint8_t> &data) {
return nullptr;
}