home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / DSKCACHE / CACHE_.ZIP / DUMPBIOS.BAT < prev    next >
Encoding:
DOS Batch File  |  1986-12-05  |  621 b   |  23 lines

  1. REM               This will make a copy of your ROM in a file called ROMBIOS
  2. ECHO OFF
  3. IF EXIST DEBUG.INP GOTO D010
  4. ECHO ON
  5. REM               . . . but first it needs the file DEBUG.INP in this directory
  6. GOTO EXIT
  7. :D010
  8. ECHO OFF
  9. IF NOT EXIST ROMBIOS GOTO D050
  10. IF EXIST ROMBIOS.BAK DEL ROMBIOS.BAK
  11. REN ROMBIOS ROMBIOS.BAK
  12. :D050
  13. DEBUG <DEBUG.INP
  14. IF EXIST ROMBIOS GOTO D900
  15. ECHO ON
  16. REM               Couldn't create ROMBIOS because the file
  17. REM               DEBUG.COM is not in this directory or on the path.
  18. GOTO EXIT
  19. :D900
  20. ECHO ON
  21. REM               Your ROM has been copied to the file ROMBIOS
  22. :EXIT
  23.