⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 settype.bat

📁 award bios 源代码,喜欢汇编程序及想研究主板BIOS程序的人可以参考哦.我是费了老大的劲才找到的哦.
💻 BAT
字号:
@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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -