mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 17:53:56 -06:00
Reworking MIPS interrupt handling, by Aurelien Jarno.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2350 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
30c4bbace1
commit
4de9b249d3
13 changed files with 76 additions and 75 deletions
|
@ -161,6 +161,13 @@ void pic_update_irq(PicState2 *s)
|
|||
#endif
|
||||
s->irq_request(s->irq_request_opaque, 1);
|
||||
}
|
||||
|
||||
/* all targets should do this rather than acking the IRQ in the cpu */
|
||||
#if defined(TARGET_MIPS)
|
||||
else {
|
||||
s->irq_request(s->irq_request_opaque, 0);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#ifdef DEBUG_IRQ_LATENCY
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue