fhdl/verilog/_printinit: initialize undriven Special inputs (bug reported by Florent Kermarrec)

This commit is contained in:
Sebastien Bourdeauducq 2013-04-11 18:55:49 +02:00
parent 72ef4b9683
commit 75d33a0c05
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ def _printspecials(overrides, specials, ns):
def _printinit(f, ios, ns):
r = ""
signals = list_signals(f) \
signals = (list_signals(f) | list_special_ios(f, True, False, False)) \
- ios \
- list_targets(f) \
- list_special_ios(f, False, True, False)