reactos/lib/sdk/crt/math/i386/fmod_asm.s
Johannes Anderwald 6c8e7899a9 - Update to trunk
svn path=/branches/audio-bringup/; revision=49927
2010-12-03 15:05:26 +00:00

26 lines
318 B
ArmAsm

#include <asm.inc>
PUBLIC _fmod
/* FUNCTIONS ***************************************************************/
.code
_fmod:
push ebp
mov ebp, esp
fld qword ptr [ebp + 8]
fld qword ptr [ebp + 16]
fxch st(1)
l1:
fprem
fstsw ax
sahf
jp l1
fstp st(1)
pop ebp
ret
END