1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00
CLK/Storage/Cartridge/Encodings/CommodoreROM.hpp
2018-05-13 15:19:52 -04:00

28 lines
406 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 */