prep.bat
来自「图像系统uc_GUI」· Batch 代码 · 共 27 行
BAT
27 行
@ECHO OFF
GOTO START
******************************************************************************
*
* File : Prep.bat
* Parameters: None
* Purpose : Sets path and other environment variables as required by tool chain
*
* This file is written for the IAR ARM toolchain
*
* It needs to be modified if the compiler is installed in a different location.
*
******************************************************************************
:START
ECHO PREP.BAT: Preparing environment for V850 IAR
if "%_PREP_ARM_GNU_%" == "_PREP_ARM_GNU_" goto cont
set _PREP_ARM_GNU_=_PREP_ARM_GNU_
SET TOOLPATH=C:\Cygnus\arm-tools\
set PATH=%TOOLPATH%\bin;%PATH%
SET C_INCLUDE=%TOOLPATH%\include;
:cont
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?