reactos/lib/sdk/crt/math/i386/fmodf_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
319 B
ArmAsm

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