reactos/sdk/lib/crt/math/i386/fmodf_asm.s
Hermès Bélusca-Maïto 9393fc320e
[FORMATTING] Remove trailing whitespace. Addendum to 34593d93.
Excluded: 3rd-party code (incl. wine) and most of the win32ss.
2021-09-13 03:52:22 +02:00

27 lines
318 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