summaryrefslogtreecommitdiff
path: root/hw/i8259.c
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2004-09-29 21:55:52 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2004-09-29 21:55:52 +0000
commit0ecf89aae327d545af6e10defd2315c97874cbd5 (patch)
tree744671f1f2463b51b3f11d7a495449af815e4a1e /hw/i8259.c
parent28d34b82467c36c60395dbfc0e118537bc6b6963 (diff)
downloadqemu-0ecf89aae327d545af6e10defd2315c97874cbd5.tar.gz
level triggered IRQ fix (Steve Wormley)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1078 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/i8259.c')
-rw-r--r--hw/i8259.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/hw/i8259.c b/hw/i8259.c
index c21f0d3060..221506b28f 100644
--- a/hw/i8259.c
+++ b/hw/i8259.c
@@ -188,7 +188,9 @@ static inline void pic_intack(PicState *s, int irq)
} else {
s->isr |= (1 << irq);
}
- s->irr &= ~(1 << irq);
+ /* We don't clear a level sensitive interrupt here */
+ if (!(s->elcr & (1 << irq)))
+ s->irr &= ~(1 << irq);
}
int cpu_get_pic_interrupt(CPUState *env)