sbar.inc

来自「Sunplus 8202S source code.」· INC 代码 · 共 49 行

INC
49
字号
//
// FILE 
// sbar.inc
// DESCRIPTION
// system bus access priority select
//
// *included in reset.c*
//

//
// 0 vpp
// 1 osd
// 2 agdc_sup
// 3 aud_pcm
// 4 ref
// 5 agdc_vld
// 6 mc
// 7 servo
// 8 auddsp
// 9 risc
// a agdc_host
// b graph
// c agdc_iop
// d ... (not used)
// e ... (not used)
// f ... (not used)
//
const	UINT8	sbar_prr[13] = 
{
	0x4,	// 0 vpp        
	0x4,	// 1 osd        
	0x0,	// 2 agdc_sup   fix sup-scaling-problem
	0x4,	// 3 aud_pcm       
	0xF,	// 4 ref          
	0x4,	// 5 agdc_vld      
	0x4,	// 6 mc            
	0x2,	// 7 servo      wells: fix servo buffer control problem
#ifdef  SPHE8202
	0x2,	// 8 auddsp        
#else
	0x4,	// 8 auddsp        
#endif
	0xA,	// 9 risc          
	0xB,	// a agdc_host     
	0xC,	// b graph         
	0xD,	// c agdc_iop      
};

⌨️ 快捷键说明

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