#pragma once //license: GPLv3 //started: 2011-09-05 #include #include #include #include #include namespace Famicom { using File = Emulator::File; using Thread = Emulator::Thread; using Scheduler = Emulator::Scheduler; using Cheat = Emulator::Cheat; extern Scheduler scheduler; extern Cheat cheat; struct Cothread : Thread { auto step(uint clocks) -> void; auto synchronizeCPU() -> void; }; #include #include #include #include #include #include #include inline auto Cothread::step(uint clocks) -> void { clock += clocks * (uint64)cpu.frequency; synchronizeCPU(); } inline auto Cothread::synchronizeCPU() -> void { if(clock >= 0 && !scheduler.synchronizing()) co_switch(cpu.thread); } } #include