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

DVD

开发平台:

C/C++

  1. #ifndef __EMUIODRV_H
  2. #define __EMUIODRV_H
  3. #include "config.h"
  4. #ifdef DVD728
  5. #define EMUIO_UART0
  6. #else
  7. #define EMUIO_UART1
  8. #endif
  9. #ifdef  EMUIO_UART1
  10. #include "io_uart1.h"
  11. #elif defined(EMUIO_UART0)
  12. #include "io_uart0.h"
  13. #else
  14. #include "io_epp.h"
  15. #endif
  16. #endif