We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b4ca98 commit 6fa3005Copy full SHA for 6fa3005
migen/fhdl/verilog.py
@@ -135,10 +135,10 @@ def _list_comb_wires(f):
135
136
def _printheader(f, ios, name, ns):
137
sigs = list_signals(f) | list_special_ios(f, True, True, True)
138
- it_mem_outs = list_special_ios(f, False, True, False)
+ special_outs = list_special_ios(f, False, True, True)
139
inouts = list_special_ios(f, False, False, True)
140
- targets = list_targets(f) | it_mem_outs
141
- wires = _list_comb_wires(f) | it_mem_outs
+ targets = list_targets(f) | special_outs
+ wires = _list_comb_wires(f) | special_outs
142
r = "module " + name + "(\n"
143
firstp = True
144
for sig in sorted(ios, key=lambda x: x.huid):
0 commit comments