diff options
author | Laurent Vivier <laurent@vivier.eu> | 2018-03-12 21:27:26 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2018-03-13 16:34:51 +0100 |
commit | 9937b02965c2a7dbc4b21d98e29b082bab095aa5 (patch) | |
tree | 5aaa5810f6793ef66c236079f1928ea38ef3ac24 /target/m68k/fpu_helper.c | |
parent | e3655afa137b2e0999537eef273a2845ba21d68c (diff) |
target/m68k: implement ftanh
Using local m68k floatx80_tanh() and floatx80_etoxm1()
[copied from previous:
Written by Andreas Grabher for Previous, NeXT Computer Emulator.]
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20180312202728.23790-10-laurent@vivier.eu>
Diffstat (limited to 'target/m68k/fpu_helper.c')
-rw-r--r-- | target/m68k/fpu_helper.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target/m68k/fpu_helper.c b/target/m68k/fpu_helper.c index 38b663e1d2..7d68879f34 100644 --- a/target/m68k/fpu_helper.c +++ b/target/m68k/fpu_helper.c @@ -638,3 +638,8 @@ void HELPER(fatanh)(CPUM68KState *env, FPReg *res, FPReg *val) { res->d = floatx80_atanh(val->d, &env->fp_status); } + +void HELPER(ftanh)(CPUM68KState *env, FPReg *res, FPReg *val) +{ + res->d = floatx80_tanh(val->d, &env->fp_status); +} |