home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
PROG
/
PASCAL
/
TPMATH.ZIP
/
TRIG387.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Assembly Source File
|
1989-03-27
|
560 b
|
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