1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-10 12:29:01 +00:00
CLK/Storage/Cartridge/Formats/PRG.hpp
2018-05-13 15:19:52 -04:00

32 lines
433 B
C++

//
// PRG.hpp
// Clock Signal
//
// Created by Thomas Harte on 27/08/2016.
// Copyright 2016 Thomas Harte. All rights reserved.
//
#ifndef Storage_Cartridge_PRG_hpp
#define Storage_Cartridge_PRG_hpp
#include "../Cartridge.hpp"
#include <string>
namespace Storage {
namespace Cartridge {
class PRG : public Cartridge {
public:
PRG(const std::string &file_name);
enum {
ErrorNotROM
};
};
}
}
#endif /* PRG_hpp */