15 lines
118 B
NASM
Raw Normal View History

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