about summary refs log tree commit diff
path: root/src/math/i386/fmod.s
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/i386/fmod.s')
-rw-r--r--src/math/i386/fmod.s11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/math/i386/fmod.s b/src/math/i386/fmod.s
new file mode 100644
index 00000000..069fbfe7
--- /dev/null
+++ b/src/math/i386/fmod.s
@@ -0,0 +1,11 @@
+.global fmod
+.type fmod,@function
+fmod:
+	fldl 12(%esp)
+	fldl 4(%esp)
+1:	fprem
+	fstsw %ax
+	sahf
+	jp 1b
+	fstp %st(1)
+	ret