SPU/PPU Loader: Implement linker/PS3 compiler executable files loading

This commit is contained in:
Eladash 2022-04-27 19:46:09 +03:00 committed by Ivan
parent 6cc1466baa
commit f9a62667cf
6 changed files with 274 additions and 27 deletions

View file

@ -164,12 +164,12 @@ public:
return r;
}
constexpr bool all_of(bs_t arg)
constexpr bool all_of(bs_t arg) const
{
return (m_data & arg.m_data) == arg.m_data;
}
constexpr bool none_of(bs_t arg)
constexpr bool none_of(bs_t arg) const
{
return (m_data & arg.m_data) == 0;
}