forked from KolibriOS/kolibrios
48ecbd9104
It is added makefile for compilation of programs under KolibriOS with the help gcc. git-svn-id: svn://kolibrios.org@696 a494cfbc-eb01-0410-851d-a64ba20cac60
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
|
|
|