prep.bat

来自「图像系统uc_GUI」· Batch 代码 · 共 26 行

BAT
26
字号
@ECHO OFF
GOTO START

******************************************************************************
*
* File      : Prep.bat
* Parameters: None
* Purpose   : Sets path and other environment variables as required by tool chain
*
* This file as is uses the Keil C51 Compiler for 8051 targets.
*
******************************************************************************

:START

ECHO Prep.bat:            Preparing environment
REM Next line avoids setting of path

IF "%_PREP_KEIL_%" == "_PREP_KEIL_" GOTO END

SET _PREP_KEIL_=_PREP_KEIL_
SET PATH=%PATH%;C:\PROGRAM FILES\KEIL\C51\BIN;

:END

⌨️ 快捷键说明

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