mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 11:18:36 +12:00
SPURS: Implement some portions of taskset policy manager
This commit is contained in:
parent
61342946a4
commit
ba6ac5019e
7 changed files with 345 additions and 108 deletions
|
@ -257,6 +257,15 @@ public:
|
|||
_u32[1] = r._u32[1] & 0x00003F07;
|
||||
_u32[0] = r._u32[0] & 0x00000F07;
|
||||
}
|
||||
|
||||
// Read the FPSCR
|
||||
void Read(u128 & r)
|
||||
{
|
||||
r._u32[3] = _u32[3];
|
||||
r._u32[2] = _u32[2];
|
||||
r._u32[1] = _u32[1];
|
||||
r._u32[0] = _u32[0];
|
||||
}
|
||||
};
|
||||
|
||||
union SPU_SNRConfig_hdr
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue