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