18c2ecf20Sopenharmony_ci/* 28c2ecf20Sopenharmony_ci 38c2ecf20Sopenharmony_ci fp_trig.h: floating-point math routines for the Linux-m68k 48c2ecf20Sopenharmony_ci floating point emulator. 58c2ecf20Sopenharmony_ci 68c2ecf20Sopenharmony_ci Copyright (c) 1998 David Huggins-Daines. 78c2ecf20Sopenharmony_ci 88c2ecf20Sopenharmony_ci I hereby give permission, free of charge, to copy, modify, and 98c2ecf20Sopenharmony_ci redistribute this software, in source or binary form, provided that 108c2ecf20Sopenharmony_ci the above copyright notice and the following disclaimer are included 118c2ecf20Sopenharmony_ci in all such copies. 128c2ecf20Sopenharmony_ci 138c2ecf20Sopenharmony_ci THIS SOFTWARE IS PROVIDED "AS IS", WITH ABSOLUTELY NO WARRANTY, REAL 148c2ecf20Sopenharmony_ci OR IMPLIED. 158c2ecf20Sopenharmony_ci 168c2ecf20Sopenharmony_ci*/ 178c2ecf20Sopenharmony_ci 188c2ecf20Sopenharmony_ci#ifndef FP_TRIG_H 198c2ecf20Sopenharmony_ci#define FP_TRIG_H 208c2ecf20Sopenharmony_ci 218c2ecf20Sopenharmony_ci#include "fp_emu.h" 228c2ecf20Sopenharmony_ci 238c2ecf20Sopenharmony_ci/* floating point trigonometric instructions: 248c2ecf20Sopenharmony_ci 258c2ecf20Sopenharmony_ci the arguments to these are in the "internal" extended format, that 268c2ecf20Sopenharmony_ci is, an "exploded" version of the 96-bit extended fp format used by 278c2ecf20Sopenharmony_ci the 68881. 288c2ecf20Sopenharmony_ci 298c2ecf20Sopenharmony_ci they return a status code, which should end up in %d0, if all goes 308c2ecf20Sopenharmony_ci well. */ 318c2ecf20Sopenharmony_ci 328c2ecf20Sopenharmony_ci#endif /* FP_TRIG__H */ 33