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

16 lines
129 B
NASM
Raw Normal View History

format ELF
include 'proc32.inc'
section '.text' executable
public tan_ as "tan"
tan_:
fld qword[esp+4]
fptan
fxch
ret