ac11de32c1
fields so that the mask and sticky bits are the same.
17 lines
241 B
ArmAsm
17 lines
241 B
ArmAsm
/*
|
|
* Written by Charles M. Hannum, Apr 9, 1995
|
|
* Public Domain.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
|
|
ENTRY(fpsetmask)
|
|
movel d2,sp@-
|
|
fmovel fpcr,d1
|
|
movel sp@(8),d2
|
|
bfextu d1{#18:#5},d0
|
|
bfins d2,d1{#18:#5}
|
|
movel sp@+,d2
|
|
fmovel d1,fpcr
|
|
rts
|