forked from KolibriOS/kolibrios
11 lines
105 B
NASM
11 lines
105 B
NASM
format COFF
|
|
section '.text'
|
|
|
|
public _tan as "tan"
|
|
|
|
_tan:
|
|
fld qword[esp+4]
|
|
fptan
|
|
fxch
|
|
ret
|