27 lines
323 B
ArmAsm
27 lines
323 B
ArmAsm
|
/*
|
||
|
* 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
|
||
|
|
||
|
orl %eax,%edx
|
||
|
movl 8(%esp),%ecx
|
||
|
andl $63,%ecx
|
||
|
subl %ecx,%edx
|
||
|
movl %edx,(%esp)
|
||
|
fldcw (%esp)
|
||
|
|
||
|
addl $4,%esp
|
||
|
ret
|