diff options
author | Laurent Vivier <laurent@vivier.eu> | 2018-03-12 21:27:19 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2018-03-13 16:33:54 +0100 |
commit | 5add1ac42faffd3d3639101fa778dced693a65a3 (patch) | |
tree | 73dfff9d401ae995610f38c8047670bc56e34f6b /target/m68k/softfloat.h | |
parent | 273401809c8a8330e5430f2c958467efa7079b2c (diff) |
target/m68k: implement fsin
Using a local m68k floatx80_sin()
[copied from previous:
Written by Andreas Grabher for Previous, NeXT Computer Emulator.]
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20180312202728.23790-3-laurent@vivier.eu>
Diffstat (limited to 'target/m68k/softfloat.h')
-rw-r--r-- | target/m68k/softfloat.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/m68k/softfloat.h b/target/m68k/softfloat.h index c5ac54d87b..e8ccf69ba8 100644 --- a/target/m68k/softfloat.h +++ b/target/m68k/softfloat.h @@ -35,4 +35,5 @@ floatx80 floatx80_etox(floatx80 a, float_status *status); floatx80 floatx80_twotox(floatx80 a, float_status *status); floatx80 floatx80_tentox(floatx80 a, float_status *status); floatx80 floatx80_tan(floatx80 a, float_status *status); +floatx80 floatx80_sin(floatx80 a, float_status *status); #endif |