mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-12-06 07:12:28 +01:00
PPU DisAsm: Fix CMPLI disassembly
This commit is contained in:
parent
479150b214
commit
15af1bca69
|
|
@ -1044,7 +1044,7 @@ void PPUDisAsm::SUBFIC(ppu_opcode_t op)
|
||||||
|
|
||||||
void PPUDisAsm::CMPLI(ppu_opcode_t op)
|
void PPUDisAsm::CMPLI(ppu_opcode_t op)
|
||||||
{
|
{
|
||||||
DisAsm_CR1_R1_IMM(op.l10 ? "cmpdi" : "cmpwi", op.crfd, op.ra, op.uimm16);
|
DisAsm_CR1_R1_IMM(op.l10 ? "cmpldi" : "cmplwi", op.crfd, op.ra, op.uimm16);
|
||||||
}
|
}
|
||||||
|
|
||||||
void PPUDisAsm::CMPI(ppu_opcode_t op)
|
void PPUDisAsm::CMPI(ppu_opcode_t op)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue