mirror of
https://github.com/N64Recomp/N64Recomp.git
synced 2025-05-22 19:34:58 +00:00
Mask the lower 3 bits of the de
RSP operand (#55)
This commit is contained in:
parent
e0e52d1fc3
commit
94b59d56f7
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);
|
||||
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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue