mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 23:41:26 +12:00
spu: Mask SRR0 at write
This commit is contained in:
parent
3455d76970
commit
c2278fb879
4 changed files with 4 additions and 4 deletions
|
@ -2436,7 +2436,7 @@ bool spu_thread::set_ch_value(u32 ch, u32 value)
|
|||
{
|
||||
case SPU_WrSRR0:
|
||||
{
|
||||
srr0 = value;
|
||||
srr0 = value & 0x3fffc;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue