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/apu.hpp
2014-06-01 17:06:30 +02: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();
}