From: Luke Kenneth Casson Leighton Date: Sun, 1 Jul 2018 23:28:43 +0000 (+0100) Subject: hack for the outputs, get rid of _out for non-inouts X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=16756efbb296c720beaa3054d6bb5a15eb28ee9c;p=pinmux.git hack for the outputs, get rid of _out for non-inouts --- diff --git a/src/bsv/actual_pinmux.py b/src/bsv/actual_pinmux.py index 32e306c..ee90986 100644 --- a/src/bsv/actual_pinmux.py +++ b/src/bsv/actual_pinmux.py @@ -76,6 +76,8 @@ def fmt(ifaces, cells, idx, suffix=None): return '0' # inputs don't get passed through to the out mux if suffix == '_outen' and x == 'out': return "wr%s%s" % (cells[1], suffix or '') # USE GPIO FOR SELECTION + if x == 'out': # sigh hack, should be using interface_decl + suffix = '' return "wr%s%s" % (cell, suffix or '') # XXX this needs to move into interface_decl.py