mirror of https://github.com/bsnes-emu/bsnes.git
19 lines
237 B
C++
19 lines
237 B
C++
|
#include <ms/ms.hpp>
|
||
|
|
||
|
namespace MasterSystem {
|
||
|
|
||
|
PSG psg;
|
||
|
|
||
|
auto PSG::Enter() -> void {
|
||
|
while(true) scheduler.synchronize(), psg.main();
|
||
|
}
|
||
|
|
||
|
auto PSG::main() -> void {
|
||
|
}
|
||
|
|
||
|
auto PSG::step(uint clocks) -> void {
|
||
|
Thread::step(clocks);
|
||
|
}
|
||
|
|
||
|
}
|