ac3_6ch_boot.c
来自「Zoran V966 DVD 解码 Soc芯片的源程序」· C语言 代码 · 共 33 行
C
33 行
#include "Include\sysdefs.h"
#ifndef MODEL_2_CHANNEL
#ifdef D_VGA_6CH_ENABLE
#include "ac3_6ch_vga_boot.c"
#else
#include "ac3_6ch_boot.c"
#endif
#else
#ifdef D_VGA_6CH_ENABLE
CONST UINT16
ac3_6ch_vga_boot_microcode_version = 0x0002;
CONST UINT16
ac3_6ch_vga_boot_microcode_features = 0x0008;
CONST UINT8
ac3_6ch_vga_boot_microcode[] = {
0x0
};
#else
CONST UINT16
ac3_6ch_boot_microcode_version = 0x0002;
CONST UINT16
ac3_6ch_boot_microcode_features = 0x0000;
CONST UINT8
ac3_6ch_boot_microcode[] = {
0x0
};
#endif
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?