mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-02 16:04:59 +00:00
28 lines
406 B
C++
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 */
|