projects
/
litex.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0ec6a7e
)
fhdl/tools/_TargetLister: do not include array keys in targets
author
Sebastien Bourdeauducq
<sebastien@milkymist.org>
Sat, 11 May 2013 15:28:41 +0000
(17:28 +0200)
committer
Sebastien Bourdeauducq
<sebastien@milkymist.org>
Sat, 11 May 2013 15:28:41 +0000
(17:28 +0200)
migen/fhdl/tools.py
patch
|
blob
|
history
diff --git
a/migen/fhdl/tools.py
b/migen/fhdl/tools.py
index 333bfe472d5b4818ab4f31961154a8b24a5e31a3..fa5e65b36bfdf2c12b7aff769c5d4b50246003f3 100644
(file)
--- a/
migen/fhdl/tools.py
+++ b/
migen/fhdl/tools.py
@@
-37,6
+37,10
@@
class _TargetLister(NodeVisitor):
self.target_context = True
self.visit(node.l)
self.target_context = False
+
+ def visit_ArrayProxy(self, node):
+ for choice in node.choices:
+ self.visit(choice)
def list_signals(node):
lister = _SignalLister()