#pragma once //license: GPLv3 //started: 2016-08-17 #include #include #include #include namespace MasterSystem { using File = Emulator::File; using Scheduler = Emulator::Scheduler; extern Scheduler scheduler; enum class Model : uint { MasterSystem, GameGear, }; struct Thread : Emulator::Thread { auto create(auto (*entrypoint)() -> void, double frequency) -> void { Emulator::Thread::create(entrypoint, frequency); scheduler.append(*this); } inline auto synchronize(Thread& thread) -> void { if(clock() >= thread.clock()) scheduler.resume(thread); } }; #include #include #include #include #include #include } #include