ppcdisasm: Fix order of operands.

For cntlzw, extsh, extsb.
This commit is contained in:
joevt 2023-08-16 12:06:06 -07:00 committed by dingusdev
parent 78558e4c52
commit f55ad323b4
1 changed files with 1 additions and 1 deletions

View File

@ -1238,7 +1238,7 @@ void opc_group31(PPCDisasmContext* ctx) {
add_reg_out(ctx, "cr");
}
fmt_twoop(ctx, opcode, rs, ra);
fmt_twoop(ctx, opcode, ra, rs);
return;