mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-16 18:30:32 +00:00
29 lines
408 B
C++
29 lines
408 B
C++
|
//
|
||
|
// 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;
|
||
|
}
|