implemented COP1 round FP64 to int64

This commit is contained in:
unknown 2015-09-26 16:30:45 -04:00
parent 074e735ccc
commit 08f090be7e
1 changed files with 4 additions and 1 deletions

View File

@ -2614,7 +2614,10 @@ __inline void Double_RoundToInteger64( unsigned __int64 * Dest, double * Source
fistp qword ptr [edi]
}
#else
g_Notify->BreakPoint(__FILEW__,__LINE__);
__m128d xmm;
xmm = _mm_load_sd(Source);
*(Dest) = _mm_cvtsd_si64(xmm);
#endif
}