fpgetmask.S revision 1.3
11.3Sperry/*	$NetBSD: fpgetmask.S,v 1.3 1998/01/09 03:45:03 perry Exp $	*/
21.3Sperry
31.1Sjtc/*
41.1Sjtc * Written by J.T. Conklin, Apr 4, 1995
51.1Sjtc * Public domain.
61.1Sjtc */
71.1Sjtc
81.1Sjtc#include <machine/asm.h>
91.1Sjtc
101.1SjtcENTRY(fpgetmask)
111.1Sjtc	subl $4,%esp
121.1Sjtc	fnstcw (%esp)
131.2Smycroft	movl (%esp),%eax
141.1Sjtc	notl %eax
151.1Sjtc	andl $63,%eax
161.1Sjtc	addl $4,%esp
171.1Sjtc	ret
18