29 lines
390 B
ArmAsm
29 lines
390 B
ArmAsm
/* $NetBSD: fpsetmask.S,v 1.3 1998/01/09 03:45:05 perry Exp $ */
|
|
|
|
/*
|
|
* Written by Charles M. Hannum, Apr 9, 1995
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
|
|
ENTRY(fpsetmask)
|
|
subl $4,%esp
|
|
|
|
fnstcw (%esp)
|
|
movl (%esp),%eax
|
|
movl %eax,%edx
|
|
|
|
notl %eax
|
|
andl $63,%eax
|
|
|
|
addl %eax,%edx
|
|
movl 8(%esp),%ecx
|
|
andl $63,%ecx
|
|
subl %ecx,%edx
|
|
movl %edx,(%esp)
|
|
fldcw (%esp)
|
|
|
|
addl $4,%esp
|
|
ret
|