disasm: display db[x]cyc

This commit is contained in:
elad335 2017-12-05 07:32:19 +02:00 committed by Ivan
parent 60f5929f81
commit 3aefd14b3d
1 changed files with 8 additions and 1 deletions

View File

@ -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
{