abel4bat.bat
来自「ABEL语言的编译器」· Batch 代码 · 共 25 行
BAT
25 行
@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
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?