#ifndef SFC_HPP #define SFC_HPP #include #include #include #include #include #include #include namespace SuperFamicom { namespace Info { static const string Name = "bsnes"; static const uint SerializerVersion = 29; } } /* bsnes - Super Famicom emulator author: byuu license: GPLv3 project started: 2004-10-14 */ #include #include #if defined(PROFILE_PERFORMANCE) #include #endif namespace SuperFamicom { 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 #if defined(PROFILE_ACCURACY) #include "profile-accuracy.hpp" #elif defined(PROFILE_BALANCED) #include "profile-balanced.hpp" #elif defined(PROFILE_PERFORMANCE) #include "profile-performance.hpp" #endif #include #include #include #include #include #include #include #include #include #include } #endif