mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-01-08 06:32:06 +03:00
17 lines
180 B
ArmAsm
17 lines
180 B
ArmAsm
|
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
|
||
|
|
||
|
.global asin;
|
||
|
|
||
|
asin:
|
||
|
fldl 4(%esp)
|
||
|
fld %st(0)
|
||
|
fmulp
|
||
|
fld1
|
||
|
fsubp
|
||
|
fsqrt
|
||
|
fldl 4(%esp)
|
||
|
fxch %st(1)
|
||
|
fpatan
|
||
|
ret
|
||
|
|