m68153.h
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* m68153.h - Motorola 68153 Bus Interruptor Module header file */
  2. /* Copyright 1984-1992 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01e,22sep92,rrr  added support for c++
  7. 01d,26may92,rrr  the tree shuffle
  8. 01c,04oct91,rrr  passed through the ansification filter
  9.   -changed copyright notice
  10. 01b,05oct90,shl  added copyright notice.
  11.                  made #endif ANSI style.
  12. 01a,03jun88,tja  extracted from frc21.h
  13. */
  14. #ifndef __INCm68153h
  15. #define __INCm68153h
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. /* BIM addresses */
  20. #define BIM_CR1(base) ((char *) ((base) + 0x01)) /* control reg 1 */
  21. #define BIM_CR2(base) ((char *) ((base) + 0x03)) /* control reg 2 */
  22. #define BIM_CR3(base) ((char *) ((base) + 0x05)) /* control reg 3 */
  23. #define BIM_CR4(base) ((char *) ((base) + 0x07)) /* control reg 4 */
  24. #define BIM_VR1(base) ((char *) ((base) + 0x09)) /* vector reg 1 */
  25. #define BIM_VR2(base) ((char *) ((base) + 0x0b)) /* vector reg 2 */
  26. #define BIM_VR3(base) ((char *) ((base) + 0x0d)) /* vector reg 3 */
  27. #define BIM_VR4(base) ((char *) ((base) + 0x0f)) /* vector reg 4 */
  28. /* BIM control reg bits */
  29. #define BIM_IRE 0x10 /* interrupt enable */
  30. #define BIM_IRAC 0x08 /* interrupt auto-clear */
  31. #define BIM_XIN 0x20 /* don't supply vector */
  32. #define BIM_F 0x80 /* user defined flag */
  33. #define BIM_FAC 0x40 /* clear flag in interrupt */
  34. #ifdef __cplusplus
  35. }
  36. #endif
  37. #endif /* __INCm68153h */