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