From 9937b02965c2a7dbc4b21d98e29b082bab095aa5 Mon Sep 17 00:00:00 2001 From: Laurent Vivier Date: Mon, 12 Mar 2018 21:27:26 +0100 Subject: 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 Message-Id: <20180312202728.23790-10-laurent@vivier.eu> --- target/m68k/softfloat.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'target/m68k/softfloat.h') diff --git a/target/m68k/softfloat.h b/target/m68k/softfloat.h index e9943aed20..4cdb5a49ca 100644 --- a/target/m68k/softfloat.h +++ b/target/m68k/softfloat.h @@ -41,4 +41,6 @@ floatx80 floatx80_atan(floatx80 a, float_status *status); floatx80 floatx80_asin(floatx80 a, float_status *status); floatx80 floatx80_acos(floatx80 a, float_status *status); floatx80 floatx80_atanh(floatx80 a, float_status *status); +floatx80 floatx80_etoxm1(floatx80 a, float_status *status); +floatx80 floatx80_tanh(floatx80 a, float_status *status); #endif -- cgit v1.2.3