base: add the FmtStackTrace debug option
[gem5.git] / src / dev / x86 / i8254.cc
index 1c2780ab6a2e3bc0aaa52b96ac27a7b325a77c8d..b6b639bd4123db385748b8309775f27bbd180467 100644 (file)
@@ -40,9 +40,11 @@ X86ISA::I8254::counterInterrupt(unsigned int num)
 {
     DPRINTF(I8254, "Interrupt from counter %d.\n", num);
     if (num == 0) {
-        intPin->raise();
-        //XXX This is a hack.
-        intPin->lower();
+        for (auto *wire: intPin) {
+            wire->raise();
+            //XXX This is a hack.
+            wire->lower();
+        }
     }
 }