abelbat2.bat

来自「自己编写的GAL可编程逻辑电路的编译软件abel4的windows界面」· Batch 代码 · 共 15 行

BAT
15
字号
@echo off
rem
rem   The arguments expected by this batch file are:
rem
rem        %1  - The ABEL-PLA root file name (with no .TT1 extension)
rem        %2  - The JEDEC file name
rem     %3-%9  - PLAOPT, FUSEASM or JEDSIM options
rem
plaopt %1.tt1 %3 %4 %5 %6 %7 %8 %9
if errorlevel == 1 goto end
fuseasm %1.tt2 %3 %4 %5 %6 %7 %8 %9
if errorlevel == 1 goto end
jedsim %2.jed %3 %4 %5 %6 %7 %8 %9
:end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?