Another vcmp condition code

This commit is contained in:
Henrik Rydgard 2012-11-06 19:33:56 +01:00
parent 3e207a1490
commit 3f730548b1

View File

@ -1043,6 +1043,7 @@ namespace MIPSInt
int c;
switch (cond)
{
case VC_EQ: c = s[i] == t[i]; break;
case VC_EZ: c = s[i] == 0.0f || s[i] == -0.0f; break;
case VC_LT: c = s[i] < t[i]; break;
case VC_LE: c = s[i] <= t[i]; break;