mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-02 13:01:27 +12:00
SPU/PPU Loader: Implement linker/PS3 compiler executable files loading
This commit is contained in:
parent
6cc1466baa
commit
f9a62667cf
6 changed files with 274 additions and 27 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue