reactos/lib/sdk/crt/math/i386/fmod_asm.s
Timo Kreuzer ab6c2ee54c [CRT]
incude asm.inc instead of reactos/asm.h
Fix a bug that smeaked into _chkstk

svn path=/branches/cmake-bringup/; revision=49591
2010-11-15 01:29:12 +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