home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l350 / 2.ddi / BIN / PHARASM.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-02-11  |  400 b   |  13 lines

  1. @echo off
  2. rem Assemble a source file with the Phar Lap 386 ASM assembler
  3. rem    %1    Name of .ASM file, without an extension
  4. rem    %2-%9    Any additional assembler switches
  5. rem Set -i switch as appropriate for your installation
  6.  
  7. if x%1==x goto usage
  8. 386asm -nolist -twocase -include c:\phar386\include\ %2 %3 %4 %5 %6 %7 %8 %1.asm
  9. goto exit
  10. :usage
  11. echo Usage:  pharasm sourcefile [switches]
  12. :exit
  13.