home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
turbopas
/
tpmath.arc
/
TRIG387.ASM
< prev
next >
Wrap
Assembly Source File
|
1989-03-27
|
560b
|
37 lines
.387
.model tpascal
ideal
%pagesize 59
Codeseg
Proc Cos FAR X: qword
Public Cos
fld [qword ptr x]
fwait
fcos
ret
endp
Proc Sin FAR X: qword
Public Sin
fld [qword ptr x]
fwait
fsin
ret
endp
Proc Tan FAR X: qword ; This function is not complete!
Public Tan
fld [qword ptr x]
fwait
fsincos
fdiv
ret
endp
end