1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-01-25 09:30:14 +00:00

27 lines
338 B
C++
Raw Normal View History

//
// 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>
2023-05-10 16:02:18 -05:00
namespace Storage::Cartridge {
class PRG : public Cartridge {
public:
PRG(const std::string &file_name);
enum {
ErrorNotROM
};
};
}