diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-06-12 11:34:10 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-06-12 11:34:10 +0000 |
commit | 5fef40fb4d7ec8386c8c0c704782f2b1fed3d438 (patch) | |
tree | c4b37a03b4a2e34d4b6fc621d8c72baf26aa6d73 /target-i386 | |
parent | e69390cee7c7a0526eac5189fc98a05c0a39ce85 (diff) |
added ffree
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@918 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/op.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-i386/op.c b/target-i386/op.c index 8b28007078..f7276ca67b 100644 --- a/target-i386/op.c +++ b/target-i386/op.c @@ -1639,6 +1639,11 @@ void OPPROTO op_fincstp(void) env->fpus &= (~0x4700); } +void OPPROTO op_ffree_STN(void) +{ + env->fptags[(env->fpstt + PARAM1) & 7] = 1; +} + void OPPROTO op_fmov_ST0_FT0(void) { ST0 = FT0; |