home *** CD-ROM | disk | FTP | other *** search
/ Excalibur 76 / Excalibur_76_cd.bin / SCREAM.BAT < prev    next >
DOS Batch File  |  1995-07-31  |  427b  |  13 lines

  1. @echo off
  2.  
  3. REM This batch files manages virtual memory for the game which is actually
  4. REM in S.EXE. If your system has enough RAM (currently 8 Mbytes) then you
  5. REM don't have to use virtual memory. The game is runs more smoothly when
  6. REM not using virtual memory.
  7.  
  8. if exist *.swp del *.swp
  9. set DOS4GVM=deleteswap minmem#3072 maxmem#65536 virtualsize#8192 swapinc#1024
  10. S.EXE %1
  11. set DOS4GVM=
  12. if exist *.swp del *.swp
  13.