mirror of
https://github.com/TomHarte/CLK.git
synced 2024-10-31 18:04:37 +00:00
32 lines
480 B
C++
32 lines
480 B
C++
//
|
|
// BinaryDump.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 28/08/2016.
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Storage_Cartridge_BinaryDump_hpp
|
|
#define Storage_Cartridge_BinaryDump_hpp
|
|
|
|
#include "../Cartridge.hpp"
|
|
|
|
#include <string>
|
|
|
|
namespace Storage {
|
|
namespace Cartridge {
|
|
|
|
class BinaryDump : public Cartridge {
|
|
public:
|
|
BinaryDump(const std::string &file_name);
|
|
|
|
enum {
|
|
ErrorNotAccessible
|
|
};
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* AcornROM_hpp */
|