From: Florent Kermarrec Date: Sat, 14 Nov 2015 01:44:12 +0000 (+0100) Subject: fix soc/integration/soc_core.py X-Git-Tag: 24jan2021_ls180~2066 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cf4c7da2e72f0ef0d91e8ec5b7086cb10921de12;p=litex.git fix soc/integration/soc_core.py --- diff --git a/litex/soc/integration/soc_core.py b/litex/soc/integration/soc_core.py index 21dd9373..bb1d2bf0 100644 --- a/litex/soc/integration/soc_core.py +++ b/litex/soc/integration/soc_core.py @@ -197,7 +197,7 @@ class SoCCore(Module): # Interrupts for k, v in sorted(self.interrupt_map.items(), key=itemgetter(1)): if hasattr(self, k): - self.comb += self.cpu.interrupt[v].eq(getattr(self, k).ev.irq) + self.comb += self.cpu_or_bridge.interrupt[v].eq(getattr(self, k).ev.irq) def build(self, *args, **kwargs): self.platform.build(self, *args, **kwargs)