home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / d / dec92.zip / PIC.H < prev    next >
Text File  |  1992-10-14  |  883b  |  35 lines

  1. ;/* Programmable Interrupt Controller (PIC) Equates
  2. comment &
  3. */
  4.  
  5. #define EOI 0x20        /* EOI command for PIC           */
  6.  
  7. #define INTA00 0x20        /* Master PIC control           */
  8. #define INTA01 0x21        /* Master PIC mask register    */
  9. #define INT_MASTER_0 0x08    /* Master PIC INT number       */
  10.  
  11. #define INTB00 0xA0        /* Slave PIC control           */
  12. #define INTB01 0xA1        /* Slave PIC mask register     */
  13. #define INT_SLAVE_0 0x70    /* Slave PIC INT number        */
  14.  
  15. #define INT_PROTMODE_0 0x50    /* Protected mode INT 0 number */
  16.  
  17.  
  18. ; /*&
  19.  
  20.  
  21. EOI equ 020h            ; EOI command for PIC
  22.  
  23. INTA00 equ 020h         ; Master PIC control
  24. INTA01 equ 021h         ; Master PIC mask register
  25. INT_MASTER_0 equ 08h        ; Master PIC INT number
  26.  
  27. INTB00 equ 0A0h         ; Slave PIC control
  28. INTB01 equ 0A1h         ; Slave PIC mask register
  29. INT_SLAVE_0 EQU 70h        ; Slave PIC INT number
  30.  
  31.  
  32. INT_PROTMODE_0 equ 50h        ; Protected mode INT 0 number
  33.  
  34. ; */
  35.