#ifndef FC_HPP #define FC_HPP #include #include namespace Famicom { namespace Info { static const string Name = "bnes"; static const uint SerializerVersion = 2; } } /* bnes - Famicom emulator authors: byuu, Ryphecha license: GPLv3 project started: 2011-09-05 */ #include namespace Famicom { struct Thread { ~Thread() { if(thread) co_delete(thread); } auto create(auto (*entrypoint)() -> void, uint frequency) -> void { if(thread) co_delete(thread); thread = co_create(65536 * sizeof(void*), entrypoint); this->frequency = frequency; clock = 0; } auto serialize(serializer& s) -> void { s.integer(frequency); s.integer(clock); } cothread_t thread = nullptr; uint frequency = 0; int64 clock = 0; }; #include #include #include #include #include #include #include #include #include #include #include } #endif