1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-06-08 19:00:42 +00:00
reactos/sdk/lib/crt/math/i386/atan2_asm.s

19 lines
175 B
ArmAsm
Raw Normal View History

#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