summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-11-19 22:09:03 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-11-19 22:09:03 +0000
commit8004340674c4b014e18357acfbcaa24d10ec9c22 (patch)
tree614a3930ec3e3bd0ba18a390e9a0cebb04f7d6b6
parenta2cc3b24334643ddba2f9aa740392162285aa58b (diff)
downloadqemu-8004340674c4b014e18357acfbcaa24d10ec9c22.tar.gz
added fcmovxx support
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@468 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r--target-i386/op.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/target-i386/op.c b/target-i386/op.c
index d4742a3847..a1e3995168 100644
--- a/target-i386/op.c
+++ b/target-i386/op.c
@@ -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;