diff options
author | Laurent Vivier <laurent@vivier.eu> | 2018-03-12 21:27:24 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2018-03-13 16:34:33 +0100 |
commit | c84813b807fc82c68ff6d72387f95b15ad283bf6 (patch) | |
tree | c04a7261e317037c0f9bee3f796c49f71134d57b /target/m68k/softfloat.h | |
parent | bc20b34e03b51725d7f008551b5f56f1da07ab6a (diff) |
target/m68k: implement facos
Using a local m68k floatx80_acos()
[copied from previous:
Written by Andreas Grabher for Previous, NeXT Computer Emulator.]
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20180312202728.23790-8-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 ca0eb674aa..1140491c81 100644 --- a/target/m68k/softfloat.h +++ b/target/m68k/softfloat.h @@ -39,4 +39,5 @@ floatx80 floatx80_sin(floatx80 a, float_status *status); floatx80 floatx80_cos(floatx80 a, float_status *status); floatx80 floatx80_atan(floatx80 a, float_status *status); floatx80 floatx80_asin(floatx80 a, float_status *status); +floatx80 floatx80_acos(floatx80 a, float_status *status); #endif |