mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 08:21:29 +12:00
SPU ch69
This commit is contained in:
parent
d878a286bc
commit
7b65f93953
2 changed files with 9 additions and 0 deletions
|
@ -912,6 +912,10 @@ void spu_recompiler::WRCH(spu_opcode_t op)
|
||||||
c->unuse(*addr);
|
c->unuse(*addr);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
case 69:
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
InterpreterCall(op); // TODO
|
InterpreterCall(op); // TODO
|
||||||
|
|
|
@ -1294,6 +1294,11 @@ bool SPUThread::set_ch_value(u32 ch, u32 value)
|
||||||
ch_event_stat &= ~value;
|
ch_event_stat &= ~value;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case 69:
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt::throw_exception("Unknown/illegal channel (ch=%d [%s], value=0x%x)" HERE, ch, ch < 128 ? spu_ch_name[ch] : "???", value);
|
fmt::throw_exception("Unknown/illegal channel (ch=%d [%s], value=0x%x)" HERE, ch, ch < 128 ? spu_ch_name[ch] : "???", value);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue