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

28 lines
406 B
C++
Raw Normal View History

//
// 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 */