summaryrefslogtreecommitdiff
path: root/src/math/x32/fmodl.s
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/x32/fmodl.s')
-rw-r--r--src/math/x32/fmodl.s11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/math/x32/fmodl.s b/src/math/x32/fmodl.s
new file mode 100644
index 00000000..ca81e60c
--- /dev/null
+++ b/src/math/x32/fmodl.s
@@ -0,0 +1,11 @@
+.global fmodl
+.type fmodl,@function
+fmodl:
+ fldt 24(%rsp)
+ fldt 8(%rsp)
+1: fprem
+ fstsw %ax
+ sahf
+ jp 1b
+ fstp %st(1)
+ ret