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