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
2020-05-18 14:42:11 -05:00

14 lines
186 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();
}