@ECHO OFF REM ==================================================================== REM MS-DOS batch file to speed up repeated loading of programs compiled REM with Lahey Fortran, running in the RAM disk. This batch file has REM been used when running bath files ELF1A.BAT, ELF1B.BAT, ELF1C.BAT. REM -------------------------------------------------------------------- REM Usage: REM RAMON REM programs REM RAMOFF REM ==================================================================== REM Copying files necessary to run the Lahey-compiled programs: IF NOT EXIST COMMAND.COM COPY C:\DOS\COMMAND.COM IF NOT EXIST TNT.EXE COPY C:\F77L3\TNT.EXE IF NOT EXIST F77L3.EER COPY C:\F77L3\F77L3.EER REM REM Copying some CRT programs and files (example): IF NOT EXIST SRP.EXE COPY C:SRP.EXE IF NOT EXIST CRT.EXE COPY C:CRT.EXE IF NOT EXIST CRTPTS.EXE COPY C:CRTPTS.EXE IF NOT EXIST SRPCRT.BAT COPY C:SRPCRT.BAT IF NOT EXIST WRIT-S.DAT COPY C:WRIT-S.DAT REM -------------------------------------------------------------------- REM Batch file to restore system setting changed for RAMdisk: PATH >RAMOFF.BAT APPEND >>RAMOFF.BAT REM REM Disabling searching of hard disk drives: PATH ; APPEND ; REM ====================================================================