From: Luke Kenneth Casson Leighton Date: Tue, 4 May 2021 15:56:06 +0000 (+0100) Subject: add printout showing exception output from FUs X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6b769020df4736e58ebb39e73d4947abc8cdf3d0;p=soc.git add printout showing exception output from FUs --- diff --git a/src/soc/fu/compunits/compunits.py b/src/soc/fu/compunits/compunits.py index 930fd147..bdb0847d 100644 --- a/src/soc/fu/compunits/compunits.py +++ b/src/soc/fu/compunits/compunits.py @@ -289,6 +289,7 @@ class AllFunctionUnits(Elaboratable): self.excs = {} for name, alu in self.fus.items(): if hasattr(alu, "exc_o"): + print ("FU exceptions", name, type(alu.exc_o), alu.exc_o) self.excs[name] = alu.exc_o def get_exc(self, name):