1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-13 21:24:23 +00:00
CLK/Storage/Tape/Formats/TapeUEF.hpp

23 lines
348 B
C++

//
// TapeUEF.hpp
// Clock Signal
//
// Created by Thomas Harte on 18/01/2016.
// Copyright © 2016 Thomas Harte. All rights reserved.
//
#ifndef TapeUEF_hpp
#define TapeUEF_hpp
#include "../Tape.hpp"
class UEF : public Storage::Tape {
public:
UEF(const char *file_name);
Cycle get_next_cycle();
private:
};
#endif /* TapeUEF_hpp */