This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
LaiNES/src/cartridge.hpp
2014-06-02 12:18:11 +02:00

15 lines
244 B
C++

#pragma once
#include "common.hpp"
namespace Cartridge {
template <bool wr> u8 access(u16 addr, u8 v = 0);
template <bool wr> u8 chr_access(u16 addr, u8 v = 0);
void signal_scanline();
void load(const char* fileName);
bool loaded();
}