mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-22 12:33:29 +00:00
19 lines
299 B
C++
19 lines
299 B
C++
//
|
|
// CommodoreROM.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 29/09/2016.
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
#include <cstdint>
|
|
|
|
namespace Storage::Cartridge::Encodings::CommodoreROM {
|
|
|
|
bool isROM(const std::vector<uint8_t> &);
|
|
|
|
}
|