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

📄 bios.bat

📁 <B>Award BIOS(Basic Input/Output System)(电脑启动时所必需)的源码</B>
💻 BAT
字号:
@echo off
::----------------------------------------------------------------------------
::Rev   Date      Name  Description
::----------------------------------------------------------------------------
::R01	06/24/98  KVN	Added a switch to avoid system hang while make BIOS




::                      like full screen logo.


if "%1"=="" goto :noinput

:yesinput
if "%1"=="%_last%" goto :mklast
set _last=%1
goto :mknew

:noinput
if "%_last%"=="" goto :error
goto :mklast

:mknew
echo.
echo About to build the entire BIOS...
echo.
touch bios.cfg
goto :mkbios

:mklast
echo.
echo Making the same version as last build

:mkbios
echo.
echo Building %_last%.BIN
echo.


getasl R

:R01 nmake "NAME=%_last%" /nologo /f bios.mak
nmake "NAME=%_last%" /M /nologo /f bios.mak	
if errorlevel 1 goto :end
if exist awardeyt.rom cbrom6 /ygroup awardeyt.rom        ;R03
echo.

:R01 if exist BuildFnt.mak nmake "NAME=%_last%" /nologo /f BuildFnt.mak
if exist BuildFnt.mak nmake "NAME=%_last%" /M /nologo /f BuildFnt.mak	
if errorlevel 1 goto :end

:R01 if exist AddFont.mak nmake "NAME=%_last%" /nologo /f AddFont.mak
if exist AddFont.mak nmake "NAME=%_last%" /M /nologo /f AddFont.mak	
if errorlevel 1 goto :end

if exist AddRom.bat call AddRom.bat
if exist %_last%.sav autocfg %_last%.sav %_last%.bin
CKCMOS /F

echo.
goto :end

:error
echo.
echo Error! No previous version to build. Use SETTYPE.BAT
echo        or type full part number
echo.
echo  Example (1):
echo.
echo      settype 6a69k000
echo      bios
echo.
echo  Example (2):
echo.
echo      bios 6a69k000
echo.
goto :end

:end


⌨️ 快捷键说明

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