Remove throw cpu_flag

This commit is contained in:
Nekotekina 2017-06-23 00:58:33 +03:00 committed by Ivan
parent aea094730b
commit d0b37777c3
3 changed files with 1 additions and 19 deletions

View file

@ -149,10 +149,4 @@ void sys_interrupt_thread_eoi(ppu_thread& ppu)
sys_interrupt.trace("sys_interrupt_thread_eoi()");
ppu.state += cpu_flag::ret;
// Throw if this syscall was not called directly by the SC instruction (hack)
if (ppu.lr == 0 || ppu.gpr[11] != 88)
{
throw cpu_flag::ret;
}
}