bsnes/higan/md/psg/psg.hpp

14 lines
213 B
C++

//TI SN76489
struct PSG : Thread {
shared_pointer<Emulator::Stream> stream;
static auto Enter() -> void;
auto main() -> void;
auto step(uint clocks) -> void;
auto power() -> void;
};
extern PSG psg;