Skip to content

Commit

Permalink
update PSEMU/CPU.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Cherrytree56567 committed Oct 17, 2023
1 parent fa1c5d7 commit 6e862c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PSEMU/CPU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ void CPU::op_subu(Instruction instruction) {
uint32_t t = instruction.rt();
uint32_t d = instruction.rd();

uint32_t v = regs[s] - regs[t]);
uint32_t v = regs[s] - regs[t];

set_reg(d, v);
}
Expand Down

0 comments on commit 6e862c0

Please sign in to comment.