mirror of
https://github.com/reactos/reactos.git
synced 2025-05-23 11:04:52 +00:00
27 lines
319 B
ArmAsm
27 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
|