fpgetmask.S revision 1.2
11.1Sjtc/* 21.1Sjtc * Written by J.T. Conklin, Apr 4, 1995 31.1Sjtc * Public domain. 41.1Sjtc */ 51.1Sjtc 61.1Sjtc#include <machine/asm.h> 71.1Sjtc 81.1SjtcENTRY(fpgetmask) 91.1Sjtc subl $4,%esp 101.1Sjtc fnstcw (%esp) 111.2Smycroft movl (%esp),%eax 121.1Sjtc notl %eax 131.1Sjtc andl $63,%eax 141.1Sjtc addl $4,%esp 151.1Sjtc ret 16