mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 14:31:24 +12:00
PPU Analyzer: Fixup
This commit is contained in:
parent
99c2d37b8c
commit
1e1d6f6437
2 changed files with 2 additions and 2 deletions
|
@ -1833,7 +1833,7 @@ bool ppu_module::analyse(u32 lib_toc, u32 entry, const u32 sec_end, const std::b
|
||||||
|
|
||||||
if (type == ppu_itype::B || type == ppu_itype::BC)
|
if (type == ppu_itype::B || type == ppu_itype::BC)
|
||||||
{
|
{
|
||||||
if (type == ppu_itype::BC && (op.bo & 0x14) == 0x14 && op.bo & 0xd)
|
if (type == ppu_itype::BC && (op.bo & 0x14) == 0x14 && op.bo & 0xB)
|
||||||
{
|
{
|
||||||
// Invalid form
|
// Invalid form
|
||||||
is_good = false;
|
is_good = false;
|
||||||
|
|
|
@ -1342,7 +1342,7 @@ void PPUDisAsm::BC(ppu_opcode_t op)
|
||||||
|
|
||||||
if (!inst)
|
if (!inst)
|
||||||
{
|
{
|
||||||
fmt::append(last_opcode, "bc 0x%x, 0x%x, 0x%x, %d, %d", bo, bi, bd, aa, lk);
|
fmt::append(last_opcode, "%-*s 0x%x, 0x%x, 0x%x, %d, %d", PadOp(), "bc", bo, bi, bd, aa, lk);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue