_pasm.bat
来自「usb加密狗复制小工具 ┆加密狗信息复制工具」· Batch 代码 · 共 30 行
BAT
30 行
REM *****************************************************************
REM * *
REM * FILE: PROTASM.BAT *
REM * *
REM * DESCRIPITION: *
REM * USED BY PROTASM.BAT *
REM * *
REM *****************************************************************
if %1.==. goto :help
if NOT %2==PASSWORD goto :help
REM *****************
REM use masm or tasm as appropriate
REM for microsoft
REM masm /A /DDLL=0 %1;
REM for Borlandc
tasm %1
if errorlevel 1 goto err
echo %1 + >>!!PROT.LNK
goto end
:err
SET PROTERR=X
goto end
:help
echo PROTASM.BAT is used internally by PROTASM.BAT.
echo Please see protasm.bat for details.
:end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?