home *** CD-ROM | disk | FTP | other *** search
- REM This will make a copy of your ROM in a file called ROMBIOS
- ECHO OFF
- IF EXIST DEBUG.INP GOTO D010
- ECHO ON
- REM . . . but first it needs the file DEBUG.INP in this directory
- GOTO EXIT
- :D010
- ECHO OFF
- IF NOT EXIST ROMBIOS GOTO D050
- IF EXIST ROMBIOS.BAK DEL ROMBIOS.BAK
- REN ROMBIOS ROMBIOS.BAK
- :D050
- DEBUG <DEBUG.INP
- IF EXIST ROMBIOS GOTO D900
- ECHO ON
- REM Couldn't create ROMBIOS because the file
- REM DEBUG.COM is not in this directory or on the path.
- GOTO EXIT
- :D900
- ECHO ON
- REM Your ROM has been copied to the file ROMBIOS
- :EXIT
-