pep8 cleanup
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 25 Jun 2018 22:24:26 +0000 (23:24 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 25 Jun 2018 22:24:26 +0000 (23:24 +0100)
src/bsv/actual_pinmux.py
src/bsv/pinmux_generator.py

index 1975e480c090ee5b392ccd433df2edc9a43c540e..bff3163012a1837aaf7d4849f8cd29984d3488a1 100644 (file)
@@ -64,12 +64,14 @@ def fmt(ifaces, cell, idx, suffix=None):
     temp = transfn(cell)
     x = ifaces.getifacetype(temp)
     if x == 'input':
-        return '0' # inputs don't get passed through to the out mux
+        return '0'  # inputs don't get passed through to the out mux
     if suffix == '_outen' and x == 'out':
         return '1'
     return "wr%s%s" % (cell, suffix or '')
 
 # XXX this needs to move into interface_decl.py
+
+
 def mkcomment(ifaces, cell, idx, outenmode=False):
     """ returns a comment string for the cell when muxed
     """
@@ -104,11 +106,12 @@ def mkmux(p, ifaces, cell, suffix, outenmode):
         cf = fmt(ifaces, cell, i, suffix)
         ret += fmtstr % (cn(cell[0]), i, cf, comment)
     comment = mkcomment(ifaces, cell, i + 1, outenmode)
-    ret += "\t\t\t" + fmt(ifaces, cell, i + 1, suffix) # last line
+    ret += "\t\t\t" + fmt(ifaces, cell, i + 1, suffix)  # last line
     ret += ";%s\n" % comment
 
     return ret
 
+
 def init(p, ifaces):
     """ generates the actual output pinmux for each io-cell.  blank lines
         need to output "0" to the iopad, if there is no entry in
index 400b08b6e59e0a81a5e2dfe97a4829459d164744..e086f35fc72d0b9373ca339f61abef72e53dd2c5 100644 (file)
@@ -219,7 +219,6 @@ def write_pmp(pmp, p, ifaces, iocells):
         ifaces.ifacedef(bsv_file)
         bsv_file.write("\n     endinterface;")
 
-
         bsv_file.write(footer)
         print("BSV file successfully generated: bsv_src/pinmux.bsv")
         # ======================================================================