mirror of
https://github.com/reactos/reactos.git
synced 2025-06-27 20:49:46 +00:00

incude asm.inc instead of reactos/asm.h Fix a bug that smeaked into _chkstk svn path=/branches/cmake-bringup/; revision=49591
18 lines
175 B
ArmAsm
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
|