home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s200 / 1.ddi / ABEL.EXE / ABEL4BAT.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-03-06  |  912 b   |  25 lines

  1. @echo off
  2. echo ABEL 4 Batch Utility - Copyright 1990 Data I/O Corp. All Rights Reserved
  3. if (%1) == () goto help
  4. if NOT (%1) == (-help) goto begin
  5. :help
  6. echo :
  7. echo :  USAGE: abel4bat  source_file [options]              
  8. echo :      sourec_file = design file name -- without suffix [.abl]
  9. echo :      options = up to 3 command line options or response file
  10. echo :
  11. echo :  Expects device files to be in the directory specified by ABEL4DEV
  12. goto end
  13. :begin
  14. if not "%5" == "" echo Warning: too many arguments - %5 ignored.
  15. if not "%6" == "" echo Warning: too many arguments - %6 ignored.
  16. if not "%7" == "" echo Warning: too many arguments - %7 ignored.
  17. if not "%8" == "" echo Warning: too many arguments - %8 ignored.
  18. if not "%9" == "" echo Warning: too many arguments - %9 ignored.
  19. ahdl2pla %1.abl -list -batch %2 %3 %4
  20. if errorlevel == 1 goto end
  21. command /c %1.bat %2 %3 %4
  22. del %1.bat
  23. :end
  24.  
  25.