migen/fhdl/specials: use fdict to pass memory initialization files to VerilogConvert...
authorFlorent Kermarrec <florent@enjoy-digital.fr>
Mon, 30 Mar 2015 09:26:10 +0000 (11:26 +0200)
committerFlorent Kermarrec <florent@enjoy-digital.fr>
Mon, 30 Mar 2015 09:37:59 +0000 (11:37 +0200)
migen/fhdl/specials.py
migen/fhdl/verilog.py

index f65beb7ab7704bb8811f59457155598871440119..361f51a18828fc0d710d9a10dda3368a26b5c4f5 100644 (file)
@@ -6,6 +6,15 @@ from migen.fhdl.tools import *
 from migen.fhdl.tracer import get_obj_var_name
 from migen.fhdl.verilog import _printexpr as verilog_printexpr
 
+def _new_file(fdict, requested_filename, contents):
+       filename = requested_filename
+       i = 1
+       while filename in fdict.keys():
+               filename = requested_filename + str(i)
+               i += 1
+       fdict[filename] = contents
+       return filename, fdict
+
 class Special(HUID):
        def iter_expressions(self):
                for x in []:
@@ -307,15 +316,7 @@ class Memory(Special):
                r += "\n"
 
                if memory.init is not None:
-                       memory_filename = gn(memory) + ".init"
-
-                       # XXX move I/O to mibuild?
-                       # (Implies mem init won't work with simple Migen examples?)
-                       f = open(memory_filename, "w")
-                       for d in memory.init:
-                               f.write("{:x}\n".format(d))
-                       f.close()
-
+                       memory_filename, fdict = _new_file(fdict, gn(memory) + ".init", memory.init)
                        r += "initial begin\n"
                        r += "$readmemh(\"" + memory_filename + "\", " + gn(memory) + ");\n"
                        r += "end\n\n"
index 499c74e3f27484afd463701b43379667a752ee73..f75dd9fb54fc1bf8bbab493b083ba352c717a654 100644 (file)
@@ -315,6 +315,11 @@ class VerilogConvert:
                fdict = OrderedDict()
                src, fdict = _printspecials(self.special_overrides, self.f.specials - self.lowered_specials, self.ns, fdict)
                r += src
+               for filename, contents in fdict.items():
+                       f = open(filename, "w")
+                       for data in contents:
+                               f.write("{:x}\n".format(data))
+                       f.close()
                r += "endmodule\n"
                return r