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

📄 comdvd.bat

📁 车载电子影音系统dvd播放系统原程序代码
💻 BAT
字号:
echo off
rem The batch file supports some OBJ files

set C_FLAGS= DF(_WINDVD)
set REM_FLAGS=

echo    This batch file will build CT908-MPEG part

rem ***********************************
rem below is u-code zip part 
rem ***********************************
echo Gzip Ucodes
call ucodezip 
if errorlevel 1 goto error

a51 l51_4m.a51
a51 l51_8m.a51
if errorlevel 1 goto error

rem ***********************************
rem below is u-code part
rem ***********************************
call cckeil ucode.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil ucode2.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil ucode3.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil ucode4.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil ucode5.c DF(_WINDVD)
if errorlevel 1 goto error

rem ***********************************
rem below is H/W dependence
rem ***********************************
call cckeil HAL.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil HAL1.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil HALJPEG.c DF(_WINDVD)
if errorlevel 1 goto error

call cckeil W99AV.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil W99AV2.c DF(_WINDVD)
if errorlevel 1 goto error

rem ***********************************
rem below is peripheral part
rem ***********************************
call cckeil SERVO.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil INPUT.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil PANEL.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil SWOSD.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil AVSYS.c DF(_WINDVD)
if errorlevel 1 goto error

call cckeil AMP.c DF(_WINDVD)
if errorlevel 1 goto error

rem ***********************************
rem below is GUI part
rem ***********************************
call cckeil OSD.c DF(_WINDVD)
if errorlevel 1 goto error
rem call cckeil OSD1.c DF(_WINDVD)
rem if errorlevel 1 goto error
rem call cckeil OSD2.c DF(_WINDVD)
rem if errorlevel 1 goto error
call cckeil OSD3.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil OSDFont0.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil OSDFont1.c DF(_WINDVD)
if errorlevel 1 goto error

call cckeil setup.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil thumb.c DF(_WINDVD)
if errorlevel 1 goto error

call cckeil OSDFM.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil OSDVP.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil OSDPRGM.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil OSDSRCH.c DF(_WINDVD)
if errorlevel 1 goto error
rem call cckeil OSDVIR.c DF(_WINDVD)
rem if errorlevel 1 goto error

rem ***********************************
rem below is GDI part
rem ***********************************
call cckeil GDI.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil GDI0.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil GDI1.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil GDI2.c DF(_WINDVD)
if errorlevel 1 goto error

rem ***********************************
rem below is Control part
rem ***********************************
call cckeil LINEAR.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil MONITOR.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil CC.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil INITIAL.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil DIGEST.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil ISR.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil UTL.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil COMUTL.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil fmanager.c DF(_WINDVD)
if errorlevel 1 goto error

rem ***********************************
rem below is Audio part
rem ***********************************
call cckeil CHIPS.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil sound.c DF(_WINDVD)
if errorlevel 1 goto error

rem ***********************************
rem below is Serial-Debugger part
rem ***********************************
call cckeil drvsio.c DF(_WINDVD)
if errorlevel 1 goto error
call cckeil sysdebug.c DF(_WINDVD)
if errorlevel 1 goto error


rem ***********************************
rem below is protected part
rem ***********************************
rem call cckeil VCD20.c DF(_WINDVD)
if errorlevel 1 goto error
rem call cckeil CDINFO.c DF(_WINDVD)
if errorlevel 1 goto error
rem call cckeil CDINFO2.c DF(_WINDVD)
if errorlevel 1 goto error

rem call cckeil dvdinfo.c DF(_WINDVD)
if errorlevel 1 goto error
rem call cckeil navigate.c DF(_WINDVD)
if errorlevel 1 goto error
rem call cckeil nvcmd.c DF(_WINDVD)
if errorlevel 1 goto error
rem call cckeil pgc.c DF(_WINDVD)
if errorlevel 1 goto error
rem call cckeil cell.c DF(_WINDVD)
if errorlevel 1 goto error

rem call cckeil TUNER.c DF(_WINDVD)
if errorlevel 1 goto error

call cckeil TFT.c DF(_WINDVD)
if errorlevel 1 goto error

rem ***********************************
rem below is servo part
rem ***********************************
echo    go sub-dir [servo]
cd .\servo
rem del *.obj
call d
call m
cd ..
echo    Sucessful !! 

goto end

:error
echo Something is wrong !! Please check it.

:end
echo on

⌨️ 快捷键说明

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