From 16756efbb296c720beaa3054d6bb5a15eb28ee9c Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 2 Jul 2018 00:28:43 +0100 Subject: [PATCH] hack for the outputs, get rid of _out for non-inouts --- src/bsv/actual_pinmux.py | 2 ++ 1 file changed, 2 insertions(+) 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 -- 2.30.2