mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
19 lines
175 B
ArmAsm
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
|