from netbsd:
authorderaadt <deraadt@openbsd.org>
Thu, 14 Dec 1995 04:53:01 +0000 (04:53 +0000)
committerderaadt <deraadt@openbsd.org>
Thu, 14 Dec 1995 04:53:01 +0000 (04:53 +0000)
commit09375bd46c7f54d65aa54f9940346ccc5c92d31d
tree16bba90f7f2f77dfb00309a7b1353ff1db0990e4
parent3282caa6b49f3a83e4dbfc7a59c09b807899efc6
from netbsd:
Still incomplete, but much more complete FPE from Ken Nakata
<kenn@remus.rutgers.edu>.  This emulator does not yet emulate
the following functions:
        FSINH, FETOXM1, FTANH, FATAN, FASIN, FATANH, FSIN, FTAN,
        FETOX, FTWOTOX, FTENTOX, FCOSH, FACOS, FCOS, FSINCOS
It is sufficient, however, to allow programs like df, w, and newfs,
to run to completion with correct results.
Portions of this code were based on the sparc fpe and on initial
work by gwr.
25 files changed:
sys/arch/m68k/fpe/README [new file with mode: 0644]
sys/arch/m68k/fpe/files.fpe [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_add.c [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_arith.h [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_arith_proto.h [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_calcea.c [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_div.c [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_emulate.c
sys/arch/m68k/fpe/fpu_emulate.h [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_exp.c [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_explode.c [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_fmovecr.c [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_fscale.c [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_fstore.c [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_getexp.c [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_hyperb.c [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_implode.c [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_int.c [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_log.c [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_mul.c [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_rem.c [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_sqrt.c [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_subr.c [new file with mode: 0644]
sys/arch/m68k/fpe/fpu_trig.c [new file with mode: 0644]
sys/arch/m68k/fpe/ieee.h [new file with mode: 0644]