Home | History | Annotate | Line # | Download | only in mc68881
e_remainder.S revision 1.5
      1  1.5  thorpej /*	$NetBSD: e_remainder.S,v 1.5 1999/11/10 16:45:39 thorpej Exp $	*/
      2  1.5  thorpej 
      3  1.1      jtc /*
      4  1.3      jtc  * Written by J.T. Conklin <jtc (at) netbsd.org>.
      5  1.3      jtc  * Public domain.
      6  1.1      jtc  */
      7  1.1      jtc 
      8  1.1      jtc #include <machine/asm.h>
      9  1.1      jtc 
     10  1.5  thorpej RCSID("$NetBSD: e_remainder.S,v 1.5 1999/11/10 16:45:39 thorpej Exp $")
     11  1.1      jtc 
     12  1.1      jtc ENTRY(__ieee754_remainder)
     13  1.5  thorpej 	fmoved	%sp@(4),%fp0
     14  1.5  thorpej 	fremd	%sp@(12),%fp0
     15  1.4   kleink #ifndef __SVR4_ABI__
     16  1.5  thorpej 	fmoved	%fp0,%sp@-
     17  1.5  thorpej 	movel	%sp@+,%d0
     18  1.5  thorpej 	movel	%sp@+,%d1
     19  1.4   kleink #endif
     20  1.1      jtc 	rts
     21