aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hw/esp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/esp.c b/hw/esp.c
index 2435371d5c..87da2a6905 100644
--- a/hw/esp.c
+++ b/hw/esp.c
@@ -154,6 +154,7 @@ static void esp_raise_irq(ESPState *s)
if (!(s->rregs[ESP_RSTAT] & STAT_INT)) {
s->rregs[ESP_RSTAT] |= STAT_INT;
qemu_irq_raise(s->irq);
+ DPRINTF("Raise IRQ\n");
}
}
@@ -162,6 +163,7 @@ static void esp_lower_irq(ESPState *s)
if (s->rregs[ESP_RSTAT] & STAT_INT) {
s->rregs[ESP_RSTAT] &= ~STAT_INT;
qemu_irq_lower(s->irq);
+ DPRINTF("Lower IRQ\n");
}
}