[> Examples:
Have a look at http://github.com/Florent-Kermarrec/misoc-de0nano
-miio.py : Led & Switch Test controlled by Python Host.
-mila.py : Logic Analyzer controlled by Python Host.
+test_miio.py : Led & Switch Test controlled by Python Host.
+test_mila.py : Logic Analyzer controlled by Python Host.
[> Contact
E-mail: florent@enjoy-digital.fr
recorder_dat_source = self.rle.source
self.comb += recorder_dat_source.connect(recorder.dat_sink)
- def get_csv(self, layout):
+ def get_csv(self, layout, ns):
r = ""
def format_line(*args):
return ",".join(args) + "\n"
r += format_line("config", "with_rle", str(int(self.with_rle)))
for e in layout:
- r += format_line("layout", e.backtrace[-1][0], str(flen(e)))
+ r += format_line("layout", ns.get_name(e), str(flen(e)))
return r