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"); _dbg_assert_msg_(CPU, 0, "Trying to interpret Int_Vh2f instruction that can't be interpreted");
break; break;
} }
ApplyPrefixD(d, sz); //TODO: and the mask to kill everything but mask ApplyPrefixD(d, outsize); //TODO: and the mask to kill everything but mask
WriteVector(d, sz, vd); WriteVector(d, outsize, vd);
PC += 4; PC += 4;
EatPrefixes(); EatPrefixes();
} }