diff options
| author | Laurent Vivier <laurent@vivier.eu> | 2018-03-05 21:39:07 +0100 |
|---|---|---|
| committer | Laurent Vivier <laurent@vivier.eu> | 2018-03-09 15:50:38 +0100 |
| commit | 67b453ed73fe65949c24e6ca2b43f6816a89a301 (patch) | |
| tree | 29dedbbff941898a4ec0f97422ff2b8e28377505 /target/m68k/softfloat.h | |
| parent | 248efb66fb88bc17c04a0d0f09a3539a43c80769 (diff) | |
| download | focaccia-qemu-67b453ed73fe65949c24e6ca2b43f6816a89a301.tar.gz focaccia-qemu-67b453ed73fe65949c24e6ca2b43f6816a89a301.zip | |
target/m68k: implement flog2
Using a local m68k floatx80_log2() [copied from previous: Written by Andreas Grabher for Previous, NeXT Computer Emulator.] Signed-off-by: Laurent Vivier <laurent@vivier.eu> Message-Id: <20180305203910.10391-6-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 ac29e76189..c0b77cf01b 100644 --- a/target/m68k/softfloat.h +++ b/target/m68k/softfloat.h @@ -30,4 +30,5 @@ floatx80 floatx80_move(floatx80 a, float_status *status); floatx80 floatx80_lognp1(floatx80 a, float_status *status); floatx80 floatx80_logn(floatx80 a, float_status *status); floatx80 floatx80_log10(floatx80 a, float_status *status); +floatx80 floatx80_log2(floatx80 a, float_status *status); #endif |