^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 1) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 2)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 3) fp_trig.h: floating-point math routines for the Linux-m68k
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 4) floating point emulator.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 5)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 6) Copyright (c) 1998 David Huggins-Daines.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 7)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 8) I hereby give permission, free of charge, to copy, modify, and
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 9) redistribute this software, in source or binary form, provided that
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) the above copyright notice and the following disclaimer are included
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) in all such copies.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) THIS SOFTWARE IS PROVIDED "AS IS", WITH ABSOLUTELY NO WARRANTY, REAL
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) OR IMPLIED.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) #ifndef FP_TRIG_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) #define FP_TRIG_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) #include "fp_emu.h"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) /* floating point trigonometric instructions:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) the arguments to these are in the "internal" extended format, that
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) is, an "exploded" version of the 96-bit extended fp format used by
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) the 68881.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) they return a status code, which should end up in %d0, if all goes
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 30) well. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 31)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 32) #endif /* FP_TRIG__H */