dsp3_intr.c
上传用户:poi891205
上传日期:2013-07-15
资源大小:9745k
文件大小:1k
源码类别:

DVD

开发平台:

C/C++

  1. /*
  2. *  File     : dsp_intr.c 
  3. *  Function : dsp3 interrupt to risc
  4. *  History  :
  5. *            2003.3.12 Creat by Terry
  6. *
  7. */
  8. #include "config.h"
  9. #include "regmap.h"
  10. #ifndef DVDRELEASE
  11. //#define DSP_INTR_DBG   1
  12. #endif
  13. #define dintr_puts(s) ((void)0)
  14. #define dintr_printf(s...) ((void)0)
  15. #ifdef DSP_INTR_DBG
  16. #include "sio.h"
  17. #include "emuio.h"
  18. #define MONE_DOWNLOAD_CODEC
  19. #undef dintr_puts
  20. #undef dintr_printf
  21. #define dintr_puts(s) io_write(s)
  22. #define dintr_printf(s...)
  23. do { 
  24.   psprintf(linebuf, ##s); io_write(linebuf); 
  25. } while (0)
  26. #endif
  27. void dsp_intr(void)
  28. {
  29.     dintr_printf("dsp:%04xn", regs0->dsp24_port[15]);
  30.     regs0->dsp24_port[15] = 0;
  31. }