hdl.mem: fix naming of registers inside unnamed memories.
authorwhitequark <cz@m-labs.hk>
Tue, 2 Jul 2019 18:37:02 +0000 (18:37 +0000)
committerwhitequark <cz@m-labs.hk>
Tue, 2 Jul 2019 18:45:35 +0000 (18:45 +0000)
Before this commit, `None` would leak into the vcd file with pysim.

nmigen/hdl/mem.py

index 2111ecc193f29dd9038c1c2977163492cc268adc..45836cbed588832585e87be2ae3bdd11f9635395 100644 (file)
@@ -27,7 +27,8 @@ class Memory:
         self._array = Array()
         if simulate:
             for addr in range(self.depth):
-                self._array.append(Signal(self.width, name="{}({})".format(name, addr)))
+                self._array.append(Signal(self.width, name="{}({})"
+                                          .format(name or "memory", addr)))
 
         self.init = init