mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-01-01 19:24:24 +03:00
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
|
||
|
|