diff options
author | 2021-07-18 13:53:08 -0300 | |
---|---|---|
committer | 2021-07-18 12:53:08 -0400 | |
commit | 4ab4f741069e9a8fac60a1f941ea3e7e0a944602 (patch) | |
tree | c5100c520829ebf6158e6374e52b11989ce814be /3rdparty/softfloat/softfloat.h | |
parent | 651049397e7084e45d2f3f7e0d448489e789aee1 (diff) |
Implement 68k FPU FATAN instruction (#8287)
Diffstat (limited to '3rdparty/softfloat/softfloat.h')
-rw-r--r-- | 3rdparty/softfloat/softfloat.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/3rdparty/softfloat/softfloat.h b/3rdparty/softfloat/softfloat.h index 6f4389b10bc..a97408c3222 100644 --- a/3rdparty/softfloat/softfloat.h +++ b/3rdparty/softfloat/softfloat.h @@ -244,6 +244,9 @@ int floatx80_fsin(floatx80 &a); int floatx80_fcos(floatx80 &a); int floatx80_ftan(floatx80 &a); +floatx80 floatx80_fpatan(floatx80 a, floatx80 b); +floatx80 floatx80_fatan(floatx80 a); + floatx80 floatx80_flognp1(floatx80 a); floatx80 floatx80_flogn(floatx80 a); floatx80 floatx80_flog2(floatx80 a); |