diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-11-19 22:09:03 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-11-19 22:09:03 +0000 |
commit | 8004340674c4b014e18357acfbcaa24d10ec9c22 (patch) | |
tree | 614a3930ec3e3bd0ba18a390e9a0cebb04f7d6b6 /target-i386/op.c | |
parent | a2cc3b24334643ddba2f9aa740392162285aa58b (diff) |
added fcmovxx support
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@468 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386/op.c')
-rw-r--r-- | target-i386/op.c | 8 |
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; |