home *** CD-ROM | disk | FTP | other *** search
/ FreeWare Collection 2 / FreeSoftwareCollection2pd199x-jp.img / ms_dos / exetoexp / asm386.bat next >
DOS Batch File  |  1990-06-14  |  275b  |  15 lines

  1. echo off
  2. if not exist %1.asm goto error
  3.   tasm /p %1
  4.   if errorlevel 1 goto end
  5.     tlink /3 %1
  6.     execnv %1
  7.     del %1.obj
  8.     del %1.map
  9.     if not "%2" == "/b" del %1.exe
  10. goto end
  11. :error
  12.   echo ファイル名が違います(拡張子は付けないで下さい)
  13. :end
  14. echo on
  15.