Changeset 468 for OCO/trunk/drv16/irq.hpp
- Timestamp:
- Nov 4, 2009, 4:21:24 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
OCO/trunk/drv16/irq.hpp
r418 r468 51 51 // ###IHV: IRQ sharing flag. Set this to "0" for ISA bus, "1" for PCI 52 52 // PCI and Microchannel environments (where hardware can share an IRQ level. 53 const BOOLIRQ_HW_Sharing = 0;53 const unsigned long IRQ_HW_Sharing = 0; 54 54 55 55 // Max num of int handlers per IRQ level. 56 const intMAX_HandlersPerIRQLevel = 3;56 const unsigned long MAX_HandlersPerIRQLevel = 3; 57 57 58 58 // PFN_InterruptHandler: Pointer to an interrupt handler. This is a near … … 92 92 // Runs in interrupt context. 93 93 void CallHandlers (void); 94 //PS+++ add for debug IRQ level 95 USHORT GetIRQLevel (void) { return _usIRQLevel;}; 94 96 95 97 private:
Note:
See TracChangeset
for help on using the changeset viewer.