mirror of https://github.com/xqemu/xqemu.git
added fcmovxx support
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@468 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
a2cc3b2433
commit
8004340674
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue