debug print statement in eq_from_execute
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 7 Sep 2020 18:24:53 +0000 (19:24 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 7 Sep 2020 21:14:45 +0000 (22:14 +0100)
src/soc/fu/base_input_record.py

index db85ca9ecfbc733884be6df60bca590a56bf8fc0..50c5958bf9fe843f417103447e3b2e8f47927a84 100644 (file)
@@ -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))