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

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdanielps committed Sep 14, 2015
2 parents 6870d1e + 5271279 commit 172c55c
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 172c55c

Please sign in to comment.