summaryrefslogtreecommitdiff
path: root/lib/libc/arch/m88k/gen/fpsetmask.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/arch/m88k/gen/fpsetmask.c')
-rw-r--r--lib/libc/arch/m88k/gen/fpsetmask.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/libc/arch/m88k/gen/fpsetmask.c b/lib/libc/arch/m88k/gen/fpsetmask.c
new file mode 100644
index 00000000000..42d88a7f641
--- /dev/null
+++ b/lib/libc/arch/m88k/gen/fpsetmask.c
@@ -0,0 +1,25 @@
+/*
+ * Written by J.T. Conklin, Apr 10, 1995
+ * Public domain.
+ * Porting to m88k by Nivas Madhur.
+ */
+
+#include <ieeefp.h>
+
+fp_except
+fpsetmask(mask)
+ fp_except mask;
+{
+ fp_except old;
+ fp_except new;
+
+ __asm__ volatile("fldcr %0,fcr63" : "=r" (old));
+
+ new = old;
+ new &= ~0x1f; /* clear bottom 5 bits and */
+ new |= (mask & 0x1f); /* set them to mask */
+
+ __asm__ volatile("fstcr %0,fcr63" : : "r" (new));
+
+ return (old & 0x1f);
+}