mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
disasm: display db[x]cyc
This commit is contained in:
parent
60f5929f81
commit
3aefd14b3d
1 changed files with 8 additions and 1 deletions
|
@ -1548,7 +1548,14 @@ void PPUDisAsm::OR(ppu_opcode_t op)
|
|||
{
|
||||
if (op.rs == op.rb)
|
||||
{
|
||||
DisAsm_R2_RC("mr", op.ra, op.rb, op.rc);
|
||||
switch (op.opcode)
|
||||
{
|
||||
case 0x7f9ce378: return Write("db8cyc");
|
||||
case 0x7fbdeb78: return Write("db10cyc");
|
||||
case 0x7fdef378: return Write("db12cyc");
|
||||
case 0x7ffffb78: return Write("db16cyc");
|
||||
default : DisAsm_R2_RC("mr", op.ra, op.rb, op.rc);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue