1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 03:29:40 +00:00

Statred working on support for at least the most fundamental file format.

This commit is contained in:
Thomas Harte
2016-01-18 15:46:41 -06:00
parent b70fdc2de8
commit 2779f0e569
8 changed files with 168 additions and 5 deletions
+16
View File
@@ -0,0 +1,16 @@
//
// Tape.cpp
// Clock Signal
//
// Created by Thomas Harte on 18/01/2016.
// Copyright © 2016 Thomas Harte. All rights reserved.
//
#include "Tape.hpp"
using namespace Storage;
void Tape::seek(Tape::Time seek_time)
{
// TODO: as best we can
}