mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-17 20:32:35 +03:00
18 lines
140 B
ArmAsm
18 lines
140 B
ArmAsm
![]() |
cos.L0:
|
||
|
.quad 0xffffffffffffffff
|
||
|
|
||
|
.global cos;
|
||
|
|
||
|
cos:
|
||
|
fldl 4(%esp)
|
||
|
fcos
|
||
|
fstsw
|
||
|
sahf
|
||
|
jnp cos.L1
|
||
|
fstp %st(0)
|
||
|
fldl cos.L0
|
||
|
|
||
|
cos.L1:
|
||
|
ret
|
||
|
|