PPUAnalyzer: Fix SLDI shift operand

This commit is contained in:
RipleyTom 2026-03-06 20:41:02 +01:00 committed by Elad
parent 2573cc5fd0
commit 43b295892f

View File

@ -2535,7 +2535,7 @@ bool ppu_module<lv2_obj>::analyse(u32 lib_toc, u32 entry, const u32 sec_end, con
// SLDI mnemonic
reg_state_t rs = get_reg(op.rs);
if (!rs.shift_left(op.sh32, reg_tag_allocator))
if (!rs.shift_left(sh, reg_tag_allocator))
{
unmap_reg(op.ra);
}