From: Luke Kenneth Casson Leighton Date: Thu, 31 May 2018 15:28:37 +0000 (+0100) Subject: output comment so as to be able to track down output X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f0063b6e38acea19e6437296d2328e38d727b207;p=pinmux.git output comment so as to be able to track down output --- diff --git a/src/bsv/actual_pinmux.py b/src/bsv/actual_pinmux.py index 374976f..0fa748d 100644 --- a/src/bsv/actual_pinmux.py +++ b/src/bsv/actual_pinmux.py @@ -38,7 +38,8 @@ def transfn(temp): def init(p, ifaces): p.pinmux = ' ' global dedicated_wire - for cell in p.muxed_cells: + for x, cell in enumerate(p.muxed_cells): + p.pinmux += " // output muxer for cell idx %d\n" % x p.pinmux += " %s_out=" % cn(cell[0]) for i in range(0, len(cell) - 2): p.pinmux += "wr%s" % cn(cell[0]) + \