home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Doom Magazine 1
/
Doom_magazine_01.bin
/
go.bat
< prev
next >
Wrap
DOS Batch File
|
1994-07-08
|
460b
|
40 lines
@echo off
cls
echo Loading.....
menu
if errorlevel 100 goto fatal
if errorlevel 27 goto stop
if errorlevel 9 goto 9
if errorlevel 8 goto 8
if errorlevel 7 goto 7
if errorlevel 6 goto 6
if errorlevel 5 goto 5
if errorlevel 4 goto 4
if errorlevel 3 goto 3
if errorlevel 2 goto 2
if errorlevel 1 goto 1
cls
type readme.txt
goto stop
:1
1
:2
2
:3
3
:4
4
:5
5
:6
6
:7
7
:8
8
:9
9
:fatal
echo Fatal error in Menu program
:stop