mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 15:31:26 +12:00
SPU: properly support STOP 0x0 instruction
This commit is contained in:
parent
0f87c6c7c3
commit
98a8eeaac2
2 changed files with 12 additions and 0 deletions
|
@ -1148,6 +1148,12 @@ void spu_thread::cpu_task()
|
|||
break;
|
||||
}
|
||||
|
||||
if (_ref<u32>(pc) == 0x0)
|
||||
{
|
||||
spu_thread::stop_and_signal(0x0);
|
||||
continue;
|
||||
}
|
||||
|
||||
spu_runtime::g_gateway(*this, vm::_ptr<u8>(offset), nullptr);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue