makeinit.bat
来自「Outputs messages to a 2line LCD」· Batch 代码 · 共 22 行
BAT
22 行
@echo off
rem
rem For the 8515 just type MAKEINIT. For the other
rem processors you will need to check what is required
rem of the -v flag by aa90. For example, the 2313
rem requires -v0, and the m103 requires -v3. For, say,
rem the m103, you would type MAKEINIT 3
rem
if "%1"=="" goto v1
aa90 crti -r -v%1 -Ic:\iar\aa90 -Ic:\sccavr
if errorlevel 1 goto bad
goto good
:v1
aa90 crti -r -v1 -Ic:\iar\aa90 -Ic:\sccavr
if errorlevel 1 goto bad
:good
goto end
:bad
echo ************** At least one error occured
:end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?