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