Revision 96e2fc41 hw/sh_intc.h

b/hw/sh_intc.h
1 1
#ifndef __SH_INTC_H__
2 2
#define __SH_INTC_H__
3 3

  
4
#include "qemu-common.h"
5
#include "irq.h"
6

  
4 7
typedef unsigned char intc_enum;
5 8

  
6 9
struct intc_vect {
......
43 46
};
44 47

  
45 48
struct intc_desc {
49
    qemu_irq *irqs;
46 50
    struct intc_source *sources;
47 51
    int nr_sources;
48 52
    struct intc_mask_reg *mask_regs;
49 53
    int nr_mask_regs;
50 54
    struct intc_prio_reg *prio_regs;
51 55
    int nr_prio_regs;
52

  
53 56
    int iomemtype;
54 57
    int pending; /* number of interrupt sources that has pending set */
55 58
};

Also available in: Unified diff