home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Taifun Collection
/
Taifun_Collection_Vol_1.iso
/
richter
/
7089
/
7089.mhs
/
RICHTER.DTP
/
H4DEMO
/
VM.BAT
< prev
Wrap
DOS Batch File
|
1994-09-07
|
511b
|
24 lines
@echo off
if "%1"=="off" goto turnoff
if "%1"=="OFF" goto turnoff
if "%1"=="Off" goto turnoff
if "%1"=="" goto defaultdrive
set dos4gvm=virtualsize#5000 swapname#%1\DOS4GVM.SWP
echo Virtual memory for HardBall IV has been enabled.
echo The swap file will be called "%1\DOS4GVM.SWP"
goto done
:defaultdrive
set dos4gvm=virtualsize#5000
echo Virtual memory for HardBall IV has been enabled.
goto done
:turnoff
set dos4gvm=
echo Virtual memory for HardBall IV has been disabled.
:done