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