mirror of https://github.com/bsnes-emu/bsnes.git
14 lines
231 B
C++
14 lines
231 B
C++
|
//Programmable Sound Generator
|
||
|
|
||
|
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;
|