home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / dtx9202 / tricks / asm / doit.bat < prev    next >
Encoding:
DOS Batch File  |  1992-01-10  |  670 b   |  24 lines

  1. echo off
  2. cls
  3. echo ┌────────────────────────────────────┐
  4. echo │ DOIT 1.0   TSR Programm generieren │
  5. echo └────────────────────────────────────┘
  6. echo.
  7. if "%1"=="" goto hilfe
  8. echo Assemblierung von %1.TSR
  9. tasm int16tsr
  10. if errorlevel 1 goto ende
  11. tlink /x/t int16tsr,int16tsr,,
  12. if errorlevel 1 goto ende
  13. if exist int16tsr.obj del int16tsr.obj > nul
  14. if exist %1.com del %1.com > nul
  15. ren int16tsr.com %1.com
  16. echo.
  17. goto ende
  18. :hilfe
  19. echo   DoIt erzeugt aus INT16TSR ein speicherresidentes Programm.
  20. echo   Als Parameter wird der Name verlangt, den das spätere COM-Programm
  21. echo   tragen soll.  Beispiel :
  22. echo                             DOIT test
  23. :ende
  24.