diff options
Diffstat (limited to 'hw/mips_malta.c')
-rw-r--r-- | hw/mips_malta.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/hw/mips_malta.c b/hw/mips_malta.c index 12343e0ade..7ddf2fd175 100644 --- a/hw/mips_malta.c +++ b/hw/mips_malta.c @@ -54,16 +54,10 @@ typedef struct { static PITState *pit; +/* The 8259 is attached to the MIPS CPU INT0 pin, ie interrupt 2 */ static void pic_irq_request(void *opaque, int level) { - CPUState *env = first_cpu; - if (level) { - env->CP0_Cause |= 0x00000400; - cpu_interrupt(env, CPU_INTERRUPT_HARD); - } else { - env->CP0_Cause &= ~0x00000400; - cpu_reset_interrupt(env, CPU_INTERRUPT_HARD); - } + cpu_mips_irq_request(opaque, 2, level); } /* Malta FPGA */ |