diff options
author | Laurent Vivier <laurent@vivier.eu> | 2018-03-12 21:27:20 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2018-03-13 16:34:02 +0100 |
commit | 68d0ed37866de2c5cafc4e2589e263961b2e8cd6 (patch) | |
tree | bb45b62d5235337a9576923f9f9efd5c12b0f628 /target/m68k/softfloat.h | |
parent | 5add1ac42faffd3d3639101fa778dced693a65a3 (diff) |
target/m68k: implement fcos
Using a local m68k floatx80_cos()
[copied from previous:
Written by Andreas Grabher for Previous, NeXT Computer Emulator.]
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20180312202728.23790-4-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 e8ccf69ba8..4fd5b2c609 100644 --- a/target/m68k/softfloat.h +++ b/target/m68k/softfloat.h @@ -36,4 +36,5 @@ 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); +floatx80 floatx80_cos(floatx80 a, float_status *status); #endif |