mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 08:31:11 +00:00
27 lines
371 B
C++
27 lines
371 B
C++
//
|
|
// BinaryDump.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 28/08/2016.
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "../Cartridge.hpp"
|
|
|
|
#include <string>
|
|
|
|
namespace Storage::Cartridge {
|
|
|
|
class BinaryDump : public Cartridge {
|
|
public:
|
|
BinaryDump(const std::string &file_name);
|
|
|
|
enum {
|
|
ErrorNotAccessible
|
|
};
|
|
};
|
|
|
|
}
|