2016-08-28 16:20:40 +00:00
|
|
|
//
|
2016-08-29 12:48:49 +00:00
|
|
|
// BinaryDump.hpp
|
2016-08-28 16:20:40 +00:00
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 28/08/2016.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
2016-08-28 16:20:40 +00:00
|
|
|
//
|
|
|
|
|
2016-08-29 12:48:49 +00:00
|
|
|
#ifndef Storage_Cartridge_BinaryDump_hpp
|
|
|
|
#define Storage_Cartridge_BinaryDump_hpp
|
2016-08-28 16:20:40 +00:00
|
|
|
|
|
|
|
#include "../Cartridge.hpp"
|
|
|
|
|
2018-04-06 21:42:24 +00:00
|
|
|
#include <string>
|
|
|
|
|
2016-08-28 16:20:40 +00:00
|
|
|
namespace Storage {
|
|
|
|
namespace Cartridge {
|
|
|
|
|
2016-08-29 12:48:49 +00:00
|
|
|
class BinaryDump : public Cartridge {
|
2016-08-28 16:20:40 +00:00
|
|
|
public:
|
2018-04-06 21:42:24 +00:00
|
|
|
BinaryDump(const std::string &file_name);
|
2016-08-28 16:20:40 +00:00
|
|
|
|
|
|
|
enum {
|
2016-08-29 12:48:49 +00:00
|
|
|
ErrorNotAccessible
|
2016-08-28 16:20:40 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* AcornROM_hpp */
|