home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo ABEL 4 Batch Utility - Copyright 1990 Data I/O Corp. All Rights Reserved
- if (%1) == () goto help
- if NOT (%1) == (-help) goto begin
- :help
- echo :
- echo : USAGE: abel4bat source_file [options]
- echo : sourec_file = design file name -- without suffix [.abl]
- echo : options = up to 3 command line options or response file
- echo :
- echo : Expects device files to be in the directory specified by ABEL4DEV
- goto end
- :begin
- if not "%5" == "" echo Warning: too many arguments - %5 ignored.
- if not "%6" == "" echo Warning: too many arguments - %6 ignored.
- if not "%7" == "" echo Warning: too many arguments - %7 ignored.
- if not "%8" == "" echo Warning: too many arguments - %8 ignored.
- if not "%9" == "" echo Warning: too many arguments - %9 ignored.
- ahdl2pla %1.abl -list -batch %2 %3 %4
- if errorlevel == 1 goto end
- command /c %1.bat %2 %3 %4
- del %1.bat
- :end
-
-