kolibrios/programs/develop/ktcc/trunk/libc/math/sqrtf.asm

15 lines
119 B
NASM
Raw Normal View History

format ELF
include '../proc32.inc'
section '.text' executable
public sqrtf
sqrtf:
fld dword[esp+4]
fsqrt
ret