ep8260.h 625 B

123456789101112131415161718192021222324
  1. #ifndef __EP8260_H__
  2. #define __EP8260_H__
  3. typedef struct tt_ep_regs {
  4. volatile unsigned char bcsr0;
  5. volatile unsigned char bcsr1;
  6. volatile unsigned char bcsr2;
  7. volatile unsigned char bcsr3;
  8. volatile unsigned char bcsr4;
  9. volatile unsigned char bcsr5;
  10. volatile unsigned char bcsr6;
  11. volatile unsigned char bcsr7;
  12. volatile unsigned char bcsr8;
  13. volatile unsigned char bcsr9;
  14. volatile unsigned char bcsr10;
  15. volatile unsigned char bcsr11;
  16. volatile unsigned char bcsr12;
  17. volatile unsigned char bcsr13;
  18. volatile unsigned char bcsr14;
  19. volatile unsigned char bcsr15;
  20. } t_ep_regs;
  21. typedef t_ep_regs *tp_ep_regs;
  22. #endif