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/include/apu.hpp
2016-12-01 18:46:38 -05:00

14 lines
180 B
C++

#pragma once
#include "common.hpp"
namespace APU {
template <bool write> u8 access(int elapsed, u16 addr, u8 v = 0);
void run_frame(int elapsed);
void reset();
void init();
}