From: Luke Kenneth Casson Leighton Date: Mon, 7 Sep 2020 18:24:53 +0000 (+0100) Subject: debug print statement in eq_from_execute X-Git-Tag: semi_working_ecp5~134 X-Git-Url: https://git.libre-soc.org/?p=soc.git;a=commitdiff_plain;h=60539c7861b2baa284855df6a2ee1fecc221e29b debug print statement in eq_from_execute --- diff --git a/src/soc/fu/base_input_record.py b/src/soc/fu/base_input_record.py index db85ca9e..50c5958b 100644 --- a/src/soc/fu/base_input_record.py +++ b/src/soc/fu/base_input_record.py @@ -25,6 +25,8 @@ class CompOpSubsetBase(Record): """ use this to copy in from Decode2Execute1Type """ res = [] + print ("eq_from_execute self", self, self.fields) + print (" other", other, other.fields) for fname, sig in self.fields.items(): eqfrom = other.do.fields[fname] res.append(sig.eq(eqfrom))