home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / alt / msdos / programm / 2063 < prev    next >
Encoding:
Internet Message Format  |  1992-07-23  |  669 b 

  1. Path: sparky!uunet!newsstand.cit.cornell.edu!vax5.cit.cornell.edu!c3q
  2. From: c3q@vax5.cit.cornell.edu
  3. Newsgroups: alt.msdos.programmer
  4. Subject: IRQs, inteerupts, and the 8259
  5. Message-ID: <1992Jul23.205435.13965@vax5.cit.cornell.edu>
  6. Date: 23 Jul 92 20:54:35 EDT
  7. Distribution: world
  8. Organization: Cornell University
  9. Lines: 14
  10.  
  11.  
  12. For a given IRQ (n) either hard-wired or set on a board, the corresponding
  13. interrupt is n+8.  The 8259 interrupt mask is 0..010..0 (8 bits) with the "1"
  14. located in bit n.
  15.  
  16. EX:    IRQ: 3
  17.     Int: # 0Bh = 11 decimal
  18.     mask: 00001000b
  19.  
  20. For more information, see Ray Duncan's _Advanced MS-DOS Programming_
  21.                       
  22. - Travis J.I. Corcoran
  23.  
  24.  
  25.