From: Luke Kenneth Casson Leighton Date: Wed, 5 May 2021 12:38:11 +0000 (+0100) Subject: whoops wrong signal name, set exc_happened X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=52de318a325e2eb5e71dfbfdbf2da9f4a0252ccb;p=soc.git whoops wrong signal name, set exc_happened --- diff --git a/src/soc/simple/issuer.py b/src/soc/simple/issuer.py index eac90c63..732d2bd9 100644 --- a/src/soc/simple/issuer.py +++ b/src/soc/simple/issuer.py @@ -601,7 +601,7 @@ class TestIssuerInternal(Elaboratable): el.append(exc.happened) exc_happened = Signal() if len(el) > 0: # at least one exception - comb += exc.happened.eq(Cat(*el).bool()) + comb += exc_happened.eq(Cat(*el).bool()) with m.FSM(name="issue_fsm"):