home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / cbm / nduk-v37.lha / V37 / include / hardware / intbits.i < prev   
Text File  |  1991-11-27  |  2KB  |  54 lines

  1.     IFND    HARDWARE_INTBITS_I
  2. HARDWARE_INTBITS_I    SET    1
  3. **
  4. **    $Filename: hardware/intbits.i $
  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. INTB_SETCLR    EQU   (15)  ;Set/Clear control bit. Determines if bits
  16.                ;written with a 1 get set or cleared. Bits
  17.                ;written with a zero are allways unchanged.
  18. INTB_INTEN     EQU   (14)  ;Master interrupt (enable only )
  19. INTB_EXTER     EQU   (13)  ;External interrupt
  20. INTB_DSKSYNC   EQU   (12)  ;Disk re-SYNChronized
  21. INTB_RBF       EQU   (11)  ;serial port Receive Buffer Full
  22. INTB_AUD3      EQU   (10)  ;Audio channel 3 block finished
  23. INTB_AUD2      EQU   (9)   ;Audio channel 2 block finished
  24. INTB_AUD1      EQU   (8)   ;Audio channel 1 block finished
  25. INTB_AUD0      EQU   (7)   ;Audio channel 0 block finished
  26. INTB_BLIT      EQU   (6)   ;Blitter finished
  27. INTB_VERTB     EQU   (5)   ;start of Vertical Blank
  28. INTB_COPER     EQU   (4)   ;Coprocessor
  29. INTB_PORTS     EQU   (3)   ;I/O Ports and timers
  30. INTB_SOFTINT   EQU   (2)   ;software interrupt request
  31. INTB_DSKBLK    EQU   (1)   ;Disk Block done
  32. INTB_TBE       EQU   (0)   ;serial port Transmit Buffer Empty
  33.  
  34.  
  35.  
  36. INTF_SETCLR    EQU   (1<<15)
  37. INTF_INTEN     EQU   (1<<14)
  38. INTF_EXTER     EQU   (1<<13)
  39. INTF_DSKSYNC   EQU   (1<<12)
  40. INTF_RBF       EQU   (1<<11)
  41. INTF_AUD3      EQU   (1<<10)
  42. INTF_AUD2      EQU   (1<<9)
  43. INTF_AUD1      EQU   (1<<8)
  44. INTF_AUD0      EQU   (1<<7)
  45. INTF_BLIT      EQU   (1<<6)
  46. INTF_VERTB     EQU   (1<<5)
  47. INTF_COPER     EQU   (1<<4)
  48. INTF_PORTS     EQU   (1<<3)
  49. INTF_SOFTINT   EQU   (1<<2)
  50. INTF_DSKBLK    EQU   (1<<1)
  51. INTF_TBE       EQU   (1<<0)
  52.  
  53.     ENDC    ; HARDWARE_INTBITS_I
  54.