home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / utils / easyun.zip / FIXBLAST.BAT < prev    next >
DOS Batch File  |  1986-07-23  |  1KB  |  46 lines

  1. echo off
  2. cls
  3. echo                Unprotect BLAST Rev 7.2.1 (MS-DOS)
  4. echo .
  5. echo      You must put a copy of BLAST.EXE on this disk.
  6. echo      DEBUG.COM must either be on this disk or in your PATH.
  7. echo .
  8. echo      Hold CTRL and hit BREAK to terminate this BAT file.
  9. pause
  10. echo .
  11. if not exist BLAST.EXE GOTO ERROR
  12. rename blast.exe blast.tmp
  13. cls
  14. echo ================= Expected DEBUG results =====================
  15. echo -e d0e7
  16. echo xxxx:D0E7  65.
  17. echo -e d109
  18. echo xxxx:D109  67.     FE.     11.     6E.     6B.     44.     3B.
  19. echo xxxx:D110  D2.     76.     AB.     84.     3F.     3E.
  20. echo -q
  21. echo ==============================================================
  22. echo .
  23. echo ================== Actual DEBUG results ======================
  24. debug blast.tmp <fixblast.in1
  25. echo ==============================================================
  26. echo .
  27. echo      If Expected and Actual DEBUG results don't match,
  28. echo      this BAT file won't unprotect your version of BLAST.
  29. echo .
  30. echo      Hold CTRL and hit BREAK to terminate this BAT file.
  31. pause
  32. cls
  33. echo .
  34. echo =================== Unprotecting BLAST =======================
  35. debug blast.tmp <fixblast.in2
  36. echo ==============================================================
  37. rename blast.tmp blast.exe
  38. echo .
  39. echo      Done.
  40. GOTO FINISH
  41. :ERROR
  42. echo      You must put a copy of BLAST.EXE on this disk.
  43. :FINISH
  44. echo on
  45. 
  46.