reactos/lib/sdk/crt/math/i386/atan2_asm.s
2013-06-16 22:01:41 +00:00

18 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