1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00
CLK/Storage/Tape/Formats/CAS.cpp

29 lines
408 B
C++
Raw Normal View History

//
// CAS.cpp
// Clock Signal
//
// Created by Thomas Harte on 25/11/2017.
// Copyright © 2017 Thomas Harte. All rights reserved.
//
#include "CAS.hpp"
using namespace Storage::Tape;
CAS::CAS(const char *file_name) :
file_(file_name) {
}
bool CAS::is_at_end() {
return true;
}
void CAS::virtual_reset() {
}
Tape::Pulse CAS::virtual_get_next_pulse() {
Pulse empty_pulse;
return empty_pulse;
}