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

14 lines
180 B
C++
Raw Normal View History

2014-06-01 12:29:22 +00:00
#pragma once
#include "common.hpp"
namespace APU {
template <bool write> u8 access(int elapsed, u16 addr, u8 v = 0);
void run_frame(int elapsed);
2014-06-01 15:06:30 +00:00
void reset();
2014-06-01 12:29:22 +00:00
void init();
}