waterPressureDifference.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. ** asm-m68k/amigahw.h -- This header defines some macros and pointers for
  3. ** the various Amiga custom hardware registers.
  4. ** The naming conventions used here conform to those
  5. ** used in the Amiga Hardware Reference Manual, 3rd Edition
  6. **
  7. ** Copyright 1992 by Greg Harp
  8. **
  9. ** This file is subject to the terms and conditions of the GNU General Public
  10. ** License. See the file COPYING in the main directory of this archive
  11. ** for more details.
  12. **
  13. ** Created: 9/24/92 by Greg Harp
  14. */
  15. #ifndef _M68K_AMIGAHW_H
  16. #define _M68K_AMIGAHW_H
  17. #include <linux/ioport.h>
  18. /*
  19. * Different Amiga models
  20. */
  21. #define AMI_UNKNOWN (0)
  22. #define AMI_500 (1)
  23. #define AMI_500PLUS (2)
  24. #define AMI_600 (3)
  25. #define AMI_1000 (4)
  26. #define AMI_1200 (5)
  27. #define AMI_2000 (6)
  28. #define AMI_2500 (7)
  29. #define AMI_3000 (8)
  30. #define AMI_3000T (9)
  31. #define AMI_3000PLUS (10)
  32. #define AMI_4000 (11)
  33. #define AMI_4000T (12)
  34. #define AMI_CDTV (13)
  35. #define AMI_CD32 (14)
  36. #define AMI_DRACO (15)
  37. /*
  38. * Chipsets
  39. */
  40. extern unsigned long amiga_chipset;
  41. #define CS_STONEAGE (0)
  42. #define CS_OCS (1)
  43. #define CS_ECS (2)
  44. #define CS_AGA (3)