mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-01-01 19:24:24 +03:00
15 lines
125 B
NASM
15 lines
125 B
NASM
|
|
||
|
format ELF
|
||
|
include 'proc32.inc'
|
||
|
section '.text' executable
|
||
|
|
||
|
public fabs_ as "fabs"
|
||
|
|
||
|
fabs_:
|
||
|
|
||
|
fld qword[esp+4]
|
||
|
fabs
|
||
|
|
||
|
ret
|
||
|
|