1995-04-07 18:57:16 +04:00
|
|
|
/*
|
|
|
|
* Written by J.T. Conklin, Apr 4, 1995
|
|
|
|
* Public domain.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <machine/asm.h>
|
|
|
|
|
1995-04-09 23:14:28 +04:00
|
|
|
ENTRY(fpgetsticky)
|
1995-04-07 18:57:16 +04:00
|
|
|
subl $4,%esp
|
|
|
|
fnstsw (%esp)
|
1995-04-09 23:31:33 +04:00
|
|
|
movl (%esp),%eax
|
1995-04-07 18:57:16 +04:00
|
|
|
andl $63,%eax
|
|
|
|
addl $4,%esp
|
|
|
|
ret
|