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

15 lines
117 B
NASM
Raw Normal View History

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