2016-08-27 22:17:40 +00:00
|
|
|
//
|
|
|
|
// PRG.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 27/08/2016.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
2016-08-27 22:17:40 +00:00
|
|
|
//
|
|
|
|
|
2016-08-27 22:26:51 +00:00
|
|
|
#ifndef Storage_Cartridge_PRG_hpp
|
|
|
|
#define Storage_Cartridge_PRG_hpp
|
2016-08-27 22:17:40 +00:00
|
|
|
|
2016-08-27 22:26:51 +00:00
|
|
|
#include "../Cartridge.hpp"
|
2016-08-27 22:17:40 +00:00
|
|
|
|
2018-04-06 21:42:24 +00:00
|
|
|
#include <string>
|
|
|
|
|
2016-08-27 22:17:40 +00:00
|
|
|
namespace Storage {
|
2016-08-27 22:26:51 +00:00
|
|
|
namespace Cartridge {
|
2016-08-27 22:17:40 +00:00
|
|
|
|
2016-08-27 22:26:51 +00:00
|
|
|
class PRG : public Cartridge {
|
2016-08-27 22:17:40 +00:00
|
|
|
public:
|
2018-04-06 21:42:24 +00:00
|
|
|
PRG(const std::string &file_name);
|
2016-08-27 22:17:40 +00:00
|
|
|
|
|
|
|
enum {
|
|
|
|
ErrorNotROM
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* PRG_hpp */
|