forked from KolibriOS/kolibrios
10 lines
99 B
NASM
10 lines
99 B
NASM
|
format COFF
|
||
|
section '.text'
|
||
|
|
||
|
public _sqrt as "sqrt"
|
||
|
|
||
|
_sqrt:
|
||
|
fld qword[esp+4]
|
||
|
fsqrt
|
||
|
ret
|