27 lines
342 B
ArmAsm
27 lines
342 B
ArmAsm
/*
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
|
|
RCSID("$NetBSD: s_cos.S,v 1.6 1999/07/02 15:37:34 simonb Exp $")
|
|
|
|
ENTRY(cos)
|
|
fldl 4(%esp)
|
|
fcos
|
|
fnstsw %ax
|
|
andw $0x400,%ax
|
|
jnz 1f
|
|
ret
|
|
1: fldpi
|
|
fadd %st(0)
|
|
fxch %st(1)
|
|
2: fprem1
|
|
fnstsw %ax
|
|
andw $0x400,%ax
|
|
jnz 2b
|
|
fstp %st(1)
|
|
fcos
|
|
ret
|