sbar.inc
上传用户:caisangzi8
上传日期:2013-10-25
资源大小:15756k
文件大小:1k
源码类别:

DVD

开发平台:

C/C++

  1. //
  2. // FILE 
  3. // sbar.inc
  4. // DESCRIPTION
  5. // system bus access priority select
  6. //
  7. // *included in reset.c*
  8. //
  9. //
  10. // 0 vpp
  11. // 1 osd
  12. // 2 agdc_sup
  13. // 3 aud_pcm
  14. // 4 ref
  15. // 5 agdc_vld
  16. // 6 mc
  17. // 7 servo
  18. // 8 auddsp
  19. // 9 risc
  20. // a agdc_host
  21. // b graph
  22. // c agdc_iop
  23. // d ... (not used)
  24. // e ... (not used)
  25. // f ... (not used)
  26. //
  27. const UINT8 sbar_prr[13] = 
  28. {
  29. 0x4, // 0 vpp        
  30. 0x4, // 1 osd        
  31. 0x0, // 2 agdc_sup   fix sup-scaling-problem
  32. 0x4, // 3 aud_pcm       
  33. 0xF, // 4 ref          
  34. 0x4, // 5 agdc_vld      
  35. 0x4, // 6 mc            
  36. 0x2, // 7 servo      wells: fix servo buffer control problem
  37. #ifdef  SPHE8202
  38. 0x2, // 8 auddsp        
  39. #else
  40. 0x4, // 8 auddsp        
  41. #endif
  42. 0xA, // 9 risc          
  43. 0xB, // a agdc_host     
  44. 0xC, // b graph         
  45. 0xD, // c agdc_iop      
  46. };