mirror of
https://github.com/N64Recomp/N64Recomp.git
synced 2026-09-08 01:36:08 -05:00
Mask the lower 3 bits of the de RSP operand (#55)
This commit is contained in:
@@ -309,7 +309,7 @@ bool process_instruction(size_t instr_index, const std::vector<rabbitizer::Instr
|
||||
operand_string += fmt::format("{}, ", vs);
|
||||
break;
|
||||
case RspOperand::De:
|
||||
operand_string += fmt::format("{}, ", instr.GetRsp_de());
|
||||
operand_string += fmt::format("{}, ", instr.GetRsp_de() & 7);
|
||||
break;
|
||||
case RspOperand::Rt:
|
||||
operand_string += fmt::format("{}{}, ", ctx_gpr_prefix(rt), rt);
|
||||
|
||||
Reference in New Issue
Block a user