#pragma once //license: GPLv3 //started: 2016-01-26 #include #include namespace WonderSwan { enum class Model : uint { WonderSwan, //SW-001 (ASWAN) WonderSwanColor, //WSC-001 (SPHINX) SwanCrystal, //SCT-001 (SPHINX2) }; enum : uint { Byte = 1, Word = 2, Long = 4 }; struct File { static const auto Read = vfs::file::mode::read; static const auto Write = vfs::file::mode::write; static const auto Optional = false; static const auto Required = true; }; struct Thread { ~Thread() { if(thread) co_delete(thread); } auto create(auto (*entrypoint)() -> void, uint frequency) -> void { if(thread) co_delete(thread); thread = co_create(65'536 * 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