reactos/sdk/lib/crt/math/i386/fmod_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
317 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