settype.bat

来自「award bios 源代码,喜欢汇编程序及想研究主板BIOS程序的人可以参考哦」· Batch 代码 · 共 41 行

BAT
41
字号
@echo off

rem ----------------------------------------------------------------------------
rem Rev	 Date  		Name	Description
rem ----------------------------------------------------------------------------
rem R02	 OCT-15-90 	SMS	adding copyright stmt.
::---------------------------------------------
::File name: settype.bat
::Purpose: Force bios.bat to think we have a different size and type...
::Author: Dean W. (modified by T. Lewis)
::Date: 12/1/89
::
::Command:	settype product_number [intended size]
::
::Notes:
::
::---------------------------------------------
@echo off

::---------------------------------------------
::Set the type, if one is specified...
::---------------------------------------------

if not "%1" == "" goto :settype
@echo Error! No product number specified...
goto :done

:settype
@echo Setting type to %1
set _last=%1
goto :done

::---------------------------------------------
:: Bad size specified...
::---------------------------------------------
:bad_size
ECHO %2 is an invalid size!
goto :done

:done


⌨️ 快捷键说明

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