summaryrefslogtreecommitdiff
path: root/src/dev/x86/i8254.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/dev/x86/i8254.cc')
-rw-r--r--src/dev/x86/i8254.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/dev/x86/i8254.cc b/src/dev/x86/i8254.cc
index ac3847cd6..4f37eebad 100644
--- a/src/dev/x86/i8254.cc
+++ b/src/dev/x86/i8254.cc
@@ -37,8 +37,11 @@ void
X86ISA::I8254::counterInterrupt(unsigned int num)
{
DPRINTF(I8254, "Interrupt from counter %d.\n", num);
- if (num == 0)
- intPin->signalInterrupt();
+ if (num == 0) {
+ intPin->raise();
+ //XXX This is a hack.
+ intPin->lower();
+ }
}
Tick