mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-12 13:37:45 -04:00
9 lines
112 B
ArmAsm
9 lines
112 B
ArmAsm
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
|
|
|
|
.global sqrt;
|
|
|
|
sqrt:
|
|
fldl 4(%esp)
|
|
fsqrt
|
|
ret
|