reactos/lib/sdk/crt/math/i386/atan2_asm.s
Hermès Bélusca-Maïto b819608ed8 Create a branch for console restructuration work.
svn path=/branches/condrv_restructure/; revision=63104
2014-05-02 14:13:40 +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