Skip to content
This repository has been archived by the owner on Feb 25, 2024. It is now read-only.

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdanielps committed Sep 7, 2015
1 parent 0387395 commit 5271279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/drc_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ unsigned int drc_decodeInstructions(exec_block *block, v810_instruction *inst_ca
// jmp [reg1] doesn't use the second register
if (inst_cache[i].opcode != V810_OP_JMP) {
inst_cache[i].reg2 = (BYTE)((lowB >> 5) + ((highB & 0x3) << 3));
reg_usage[inst_cache[i].reg1]++;
reg_usage[inst_cache[i].reg2]++;
} else {
inst_cache[i].reg2 = (BYTE)(-1);
}
Expand Down

0 comments on commit 5271279

Please sign in to comment.