forked from KolibriOS/kolibrios
16 lines
129 B
NASM
16 lines
129 B
NASM
|
|
format ELF
|
|
include 'proc32.inc'
|
|
section '.text' executable
|
|
|
|
public tan_ as "tan"
|
|
|
|
tan_:
|
|
|
|
fld qword[esp+4]
|
|
fptan
|
|
fxch
|
|
|
|
ret
|
|
|