reactos/sdk/lib/crt/math/i386/atan2_asm.s

19 lines
175 B
ArmAsm

#include <asm.inc>
PUBLIC _atan2
.code
_atan2:
push ebp
mov ebp, esp
fld qword ptr [ebp + 8]
fld qword ptr [ebp + 16]
fpatan
pop ebp
ret
END