Skip to content

Commit a478289

Browse files
committedOct 29, 2014
fhdl/verilog: fix tristate to instance connection
1 parent 286092b commit a478289

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎migen/fhdl/verilog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def _printinit(f, ios, ns):
275275
signals = (list_signals(f) | list_special_ios(f, True, False, False)) \
276276
- ios \
277277
- list_targets(f) \
278-
- list_special_ios(f, False, True, False)
278+
- list_special_ios(f, False, True, True)
279279
if signals:
280280
r += "initial begin\n"
281281
for s in sorted(signals, key=lambda x: x.huid):

0 commit comments

Comments
 (0)
Please sign in to comment.