mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
17 lines
254 B
C++
17 lines
254 B
C++
|
//
|
||
|
// 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
|
||
|
}
|