ioasic.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/asm-mips/dec/ioasic.h
  3.  *
  4.  *  Copyright (C) 2000  Maciej W. Rozycki
  5.  *
  6.  *  DEC I/O ASIC access operations.
  7.  */
  8. #ifndef __ASM_DEC_IOASIC_H
  9. #define __ASM_DEC_IOASIC_H
  10. extern volatile unsigned int *ioasic_base;
  11. extern inline void ioasic_write(unsigned int reg, unsigned int v)
  12. {
  13. ioasic_base[reg / 4] = v;
  14. }
  15. extern inline unsigned int ioasic_read(unsigned int reg)
  16. {
  17. return ioasic_base[reg / 4];
  18. }
  19. #endif /* __ASM_DEC_IOASIC_H */