home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / os-include / hardware / intbits.i < prev   
Text File  |  1993-10-15  |  2KB  |  52 lines

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