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