1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-09 21:29:53 +00:00
CLK/Storage/Cartridge/Encodings/CommodoreROM.hpp

28 lines
409 B
C++

//
// CommodoreROM.hpp
// Clock Signal
//
// Created by Thomas Harte on 29/09/2016.
// Copyright © 2016 Thomas Harte. All rights reserved.
//
#ifndef CommodoreROM_hpp
#define CommodoreROM_hpp
#include <vector>
#include <cstdint>
namespace Storage {
namespace Cartridge {
namespace Encodings {
namespace CommodoreROM {
bool isROM(const std::vector<uint8_t> &);
}
}
}
}
#endif /* CommodoreROM_hpp */