diff options
author | Laurent Vivier <laurent@vivier.eu> | 2018-03-05 21:39:04 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2018-03-09 15:50:36 +0100 |
commit | 4b5c65b8f02a057bc1b77839b5012544f96fec80 (patch) | |
tree | 4c28b87d667c8222d469eec4140c83af6df5d3f3 /target/m68k/softfloat.h | |
parent | 9a069775a8087cbd6fa8c479b69be8d37bd90351 (diff) |
target/m68k: implement flognp1
Using a local m68k floatx80_lognp1()
[copied from previous:
Written by Andreas Grabher for Previous, NeXT Computer Emulator.]
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20180305203910.10391-3-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 18561b870d..4d74eaf862 100644 --- a/target/m68k/softfloat.h +++ b/target/m68k/softfloat.h @@ -27,4 +27,5 @@ floatx80 floatx80_getman(floatx80 a, float_status *status); floatx80 floatx80_getexp(floatx80 a, float_status *status); floatx80 floatx80_scale(floatx80 a, floatx80 b, float_status *status); floatx80 floatx80_move(floatx80 a, float_status *status); +floatx80 floatx80_lognp1(floatx80 a, float_status *status); #endif |