ports-b.h 467 B

12345678910111213141516171819202122232425
  1. /*
  2. * Port B Masks
  3. */
  4. #ifndef __BFIN_PERIPHERAL_PORT_B__
  5. #define __BFIN_PERIPHERAL_PORT_B__
  6. #define PB0 (1 << 0)
  7. #define PB1 (1 << 1)
  8. #define PB2 (1 << 2)
  9. #define PB3 (1 << 3)
  10. #define PB4 (1 << 4)
  11. #define PB5 (1 << 5)
  12. #define PB6 (1 << 6)
  13. #define PB7 (1 << 7)
  14. #define PB8 (1 << 8)
  15. #define PB9 (1 << 9)
  16. #define PB10 (1 << 10)
  17. #define PB11 (1 << 11)
  18. #define PB12 (1 << 12)
  19. #define PB13 (1 << 13)
  20. #define PB14 (1 << 14)
  21. #define PB15 (1 << 15)
  22. #endif