bsnes/higan/md/ym2612/ym2612.hpp

13 lines
205 B
C++

//Yamaha YM2612
struct YM2612 : Thread {
static auto Enter() -> void;
auto main() -> void;
auto step(uint clocks) -> void;
auto power() -> void;
auto reset() -> void;
};
extern YM2612 ym2612;