Fix bug in Vh2f (this instr needs more testing)

This commit is contained in:
Henrik Rydgard 2013-02-20 00:24:21 +01:00
parent 570ff5d5b9
commit 620603c236

View File

@ -690,8 +690,8 @@ namespace MIPSInt
_dbg_assert_msg_(CPU, 0, "Trying to interpret Int_Vh2f instruction that can't be interpreted");
break;
}
ApplyPrefixD(d, sz); //TODO: and the mask to kill everything but mask
WriteVector(d, sz, vd);
ApplyPrefixD(d, outsize); //TODO: and the mask to kill everything but mask
WriteVector(d, outsize, vd);
PC += 4;
EatPrefixes();
}