home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / BC_DICE2.DMS / in.adf / INCLUDE / hardware / intbits.h < prev   
Encoding:
C/C++ Source or Header  |  1995-01-10  |  1.1 KB  |  54 lines

  1. #ifndef HARDWARE_INTBITS_H
  2. #define HARDWARE_INTBITS_H
  3. /*
  4. ** $Filename: hardware/intbits.h $
  5. ** $Release: 2.04 Includes, V37.4 $
  6. ** $Revision: 36.2 $
  7. ** $Date: 90/07/10 $
  8. **
  9. ** bits in the interrupt enable (and interrupt request) register
  10. **
  11. ** (C) Copyright 1985-1991 Commodore-Amiga, Inc.
  12. ** All Rights Reserved
  13. */
  14.  
  15. #define INTB_SETCLR (15) 
  16.  
  17.  
  18. #define INTB_INTEN (14) 
  19. #define INTB_EXTER (13) 
  20. #define INTB_DSKSYNC (12) 
  21. #define INTB_RBF (11) 
  22. #define INTB_AUD3 (10) 
  23. #define INTB_AUD2 (9) 
  24. #define INTB_AUD1 (8) 
  25. #define INTB_AUD0 (7) 
  26. #define INTB_BLIT (6) 
  27. #define INTB_VERTB (5) 
  28. #define INTB_COPER (4) 
  29. #define INTB_PORTS (3) 
  30. #define INTB_SOFTINT (2) 
  31. #define INTB_DSKBLK (1) 
  32. #define INTB_TBE (0) 
  33.  
  34.  
  35.  
  36. #define INTF_SETCLR (1<<15)
  37. #define INTF_INTEN (1<<14)
  38. #define INTF_EXTER (1<<13)
  39. #define INTF_DSKSYNC (1<<12)
  40. #define INTF_RBF (1<<11)
  41. #define INTF_AUD3 (1<<10)
  42. #define INTF_AUD2 (1<<9)
  43. #define INTF_AUD1 (1<<8)
  44. #define INTF_AUD0 (1<<7)
  45. #define INTF_BLIT (1<<6)
  46. #define INTF_VERTB (1<<5)
  47. #define INTF_COPER (1<<4)
  48. #define INTF_PORTS (1<<3)
  49. #define INTF_SOFTINT (1<<2)
  50. #define INTF_DSKBLK (1<<1)
  51. #define INTF_TBE (1<<0)
  52.  
  53. #endif 
  54.