NetBSD/lib/libc/arch/i386/gen/fpsetsticky.S

27 lines
325 B
ArmAsm
Raw Normal View History

1995-04-10 00:33:13 +04:00
/*
* Written by Charles M. Hannum, Apr 9, 1995
* Public domain.
*/
#include <machine/asm.h>
ENTRY(fpsetsticky)
subl $4,%esp
fnstsw (%esp)
movl (%esp),%eax
movl %eax,%edx
notl %eax
andl $63,%eax
orl %eax,%edx
movl 8(%esp),%ecx
andl $63,%ecx
1995-04-10 00:44:02 +04:00
subl %ecx,%edx
1995-04-10 00:33:13 +04:00
movl %edx,(%esp)
fldsw (%esp)
addl $4,%esp
ret