mirror of https://github.com/bsnes-emu/bsnes.git
18 lines
305 B
C++
18 lines
305 B
C++
//General Instrument AY-3-8910
|
|
|
|
struct PSG : Thread {
|
|
shared_pointer<Emulator::Stream> stream;
|
|
|
|
//psg.cpp
|
|
static auto Enter() -> void;
|
|
auto main() -> void;
|
|
auto step(uint clocks) -> void;
|
|
|
|
auto power() -> void;
|
|
|
|
//serialization.cpp
|
|
auto serialize(serializer&) -> void;
|
|
};
|
|
|
|
extern PSG psg;
|