home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / progmisc / asmwiz16.zip / TCREATE.BAT < prev    next >
DOS Batch File  |  1991-01-29  |  424b  |  12 lines

  1. echo off
  2. echo   This batch file will assemble and link the EXAMPLE.ASM file using
  3. echo   TASM and TLINK.  If you are using a different assembler and/or linker,
  4. echo   this batch file must be changed to reflect the names of your assembler
  5. echo   and linker.
  6. echo   --------------------------------------------------------------------
  7. pause
  8. tasm example;
  9. tlink example,,nul,asmwiz;
  10. erase example.obj
  11. execom example
  12.