fp_trig.h 824 B

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