Skip to content

Commit

Permalink
PPU DisAsm: Fix CMPLI disassembly
Browse files Browse the repository at this point in the history
  • Loading branch information
elad335 authored and Nekotekina committed Oct 11, 2021
1 parent 479150b commit 15af1bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpcs3/Emu/Cell/PPUDisAsm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1044,7 +1044,7 @@ void PPUDisAsm::SUBFIC(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)
Expand Down

0 comments on commit 15af1bc

Please sign in to comment.