added fcmovxx support

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@468 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2003-11-19 22:09:03 +00:00
parent a2cc3b2433
commit 8004340674
1 changed files with 8 additions and 0 deletions

View File

@ -1776,6 +1776,14 @@ void OPPROTO op_fucomi_ST0_FT0(void)
FORCE_RET();
}
void OPPROTO op_fcmov_ST0_STN_T0(void)
{
if (T0) {
ST0 = ST(PARAM1);
}
FORCE_RET();
}
void OPPROTO op_fadd_ST0_FT0(void)
{
ST0 += FT0;