1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-13 20:55:40 +00:00
CLK/Storage/Cartridge/Formats/PRG.hpp
2024-01-16 23:34:46 -05:00

27 lines
343 B
C++

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