diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-11-22 23:57:34 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-11-22 23:57:34 +0000 |
commit | 6a8c397debd815e2f9b51577900b2ade16e51c3c (patch) | |
tree | 3317e0a47e23340713be9b1aeb2cfd2c1175e913 | |
parent | 9cdf757fd58b4c6b6bcc9847d3eef59e24b86c39 (diff) |
FTST instruction fix
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@471 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r-- | target-i386/op.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/op.c b/target-i386/op.c index a1e3995168..04046fc0b5 100644 --- a/target-i386/op.c +++ b/target-i386/op.c @@ -1903,7 +1903,7 @@ void OPPROTO op_fldz_ST0(void) void OPPROTO op_fldz_FT0(void) { - ST0 = f15rk[0]; + FT0 = f15rk[0]; } /* associated heplers to reduce generated code length and to simplify |