From 60539c7861b2baa284855df6a2ee1fecc221e29b Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 7 Sep 2020 19:24:53 +0100 Subject: [PATCH] debug print statement in eq_from_execute --- src/soc/fu/base_input_record.py | 2 ++ 1 file changed, 2 insertions(+) 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)) -- 2.30.2