/* ======================================================================== */ /* IRQ_BUS: Structure to encapsulate INTRQ/BUSRQ/BUSAK stuff. */ /* Author: J. Zbiciak */ /* ======================================================================== */ /* $Id$ */ #ifndef IRQ_BUS_H_ #define IRQ_BUS_H_ #define ASSERT_INTRQ (1) #define ASSERT_BUSRQ (2) typedef struct irq_bus_t { int intrq; uint_64 intrq_until; uint_64 busrq_until; uint_64 intak; uint_64 busak; };