Merge pull request #81 from elisha464/master

small fix, makes scogger run
This commit is contained in:
Alexandro Sánchez Bach 2014-02-19 23:50:53 +01:00
commit 8fedbd204e
1 changed files with 1 additions and 1 deletions

View File

@ -2349,7 +2349,7 @@ private:
if(count == 1)
{
//RD[32+4*n : 32+4*n+3] = CR[4*n : 4*n+3];
CPU.GPR[rd] = (u64)CPU.GetCR(n) << (n * 4);
CPU.GPR[rd] = (u64)CPU.GetCR(7 - n) << (n * 4);
}
else
CPU.GPR[rd] = 0;