fpgetsticky.S revision 1.5
1/* $NetBSD: fpgetsticky.S,v 1.5 1998/01/09 03:45:05 perry Exp $ */ 2 3/* 4 * Written by J.T. Conklin, Apr 4, 1995 5 * Public domain. 6 */ 7 8#include <machine/asm.h> 9 10ENTRY(fpgetsticky) 11 subl $4,%esp 12 fnstsw (%esp) 13 movl (%esp),%eax 14 andl $63,%eax 15 addl $4,%esp 16 ret 17