home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mega CD-ROM 1
/
megacd_rom_1.zip
/
megacd_rom_1
/
HANDICAP
/
SIGN51_1.ZIP
/
RUN.BAT
< prev
next >
Wrap
DOS Batch File
|
1989-12-12
|
357b
|
20 lines
ECHO OFF
IF EXIST GWBASIC.EXE GOTO RUNGWB
IF NOT EXIST BASICA.COM GOTO MISSING
GOTO RUNBASICA
:RUNGWB
gwbasic start
GOTO END
:RUNBASICA
basica start
GOTO END
:MISSING
CLS
ECHO Sorry! SIGN FRIENDS needs either GWBASIC.EXE or BASICA.COM
ECHO to be located on this disk. Copy whichever you have onto
ECHO this disk and try again.
:END