mirror of
https://github.com/N64Recomp/N64Recomp.git
synced 2026-04-28 04:51:43 +00:00
Do the mask ahead of time
This commit is contained in:
parent
657455433c
commit
31423d55bb
1 changed files with 1 additions and 1 deletions
|
|
@ -309,7 +309,7 @@ bool process_instruction(size_t instr_index, const std::vector<rabbitizer::Instr
|
||||||
operand_string += fmt::format("{}, ", vs);
|
operand_string += fmt::format("{}, ", vs);
|
||||||
break;
|
break;
|
||||||
case RspOperand::De:
|
case RspOperand::De:
|
||||||
operand_string += fmt::format("{} & 7, ", instr.GetRsp_de());
|
operand_string += fmt::format("{}, ", instr.GetRsp_de() & 7);
|
||||||
break;
|
break;
|
||||||
case RspOperand::Rt:
|
case RspOperand::Rt:
|
||||||
operand_string += fmt::format("{}{}, ", ctx_gpr_prefix(rt), rt);
|
operand_string += fmt::format("{}{}, ", ctx_gpr_prefix(rt), rt);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue