forked from KolibriOS/kolibrios
15 lines
122 B
NASM
15 lines
122 B
NASM
|
|
||
|
format ELF
|
||
|
include 'proc32.inc'
|
||
|
section '.text' executable
|
||
|
|
||
|
public sin_ as "sin"
|
||
|
|
||
|
sin_:
|
||
|
|
||
|
fld qword[esp+4]
|
||
|
fsin
|
||
|
|
||
|
ret
|
||
|
|