forked from KolibriOS/kolibrios
15 lines
114 B
NASM
15 lines
114 B
NASM
|
|
||
|
format ELF
|
||
|
include 'proc32.inc'
|
||
|
section '.text' executable
|
||
|
|
||
|
public sqrt
|
||
|
|
||
|
sqrt:
|
||
|
|
||
|
fld qword[esp+4]
|
||
|
fsqrt
|
||
|
|
||
|
ret
|
||
|
|