kolibrios/programs/develop/ktcc/trunk/libc.obj/source/math/tan.asm

11 lines
105 B
NASM
Raw Normal View History

format COFF
section '.text'
public _tan as "tan"
_tan:
fld qword[esp+4]
fptan
fxch
ret