This disk is the companion to fortran.ccvf. It contains just two files: FORLIB.REL -- This is the library which all programs should link against, eg, FCS>RUN F80 F80>FOO F80> FCS>RUN L80 L80>FOO,FORLIB LIB.PRG -- Read the ISC FORTRAN manual for more details, but in short: Programs too large to link by the normal procedure may be linked by use of the equates file (EQ.REL, on fortran.ccvf). At link time, the compiled module(s) of the program are link to EQ.REL with a program address of AC9D (or beyond) so that the prelinked library may be in memory at runtime: FCS>RUN L80 L80>/P:AC9D (this value is probably different for the CCII) L80>modulename1,modulename2,... L80>EQ L80>/N:filename/E FCS>RUN LIB (this loads in the prelinked library) FCS>RUN filename