From: Sebastien Bourdeauducq Date: Sat, 28 Jan 2012 10:39:28 +0000 (+0100) Subject: fhdl: do not prefix instance signal names X-Git-Tag: 24jan2021_ls180~2099^2~1047 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5c2df4557721f296a5bdb1a30fe241bb1d7ce845;p=litex.git fhdl: do not prefix instance signal names --- diff --git a/migen/fhdl/structure.py b/migen/fhdl/structure.py index 4c0ef34b..ce17be22 100644 --- a/migen/fhdl/structure.py +++ b/migen/fhdl/structure.py @@ -216,7 +216,7 @@ class Instance: if isinstance(x[1], Signal): return x # override elif isinstance(x[1], BV): - return (x[0], Signal(x[1], self.name_override + "_" + x[0])) + return (x[0], Signal(x[1], x[0])) else: raise TypeError self.outs = dict(map(process_io, outs))