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
|
|
|
//
|
|
|
|
|
2024-01-16 23:34:46 -05:00
|
|
|
#pragma once
|
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>
|
|
|
|
|
2023-05-10 16:02:18 -05:00
|
|
|
namespace Storage::Cartridge {
|
2016-08-27 18:17:40 -04:00
|
|
|
|
2016-08-27 18:26:51 -04:00
|
|
|
class PRG : public Cartridge {
|
2024-12-01 21:44:14 -05:00
|
|
|
public:
|
|
|
|
PRG(const std::string &file_name);
|
2016-08-27 18:17:40 -04:00
|
|
|
|
2024-12-01 21:44:14 -05:00
|
|
|
enum {
|
|
|
|
ErrorNotROM
|
|
|
|
};
|
2016-08-27 18:17:40 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|