From: Florent Kermarrec Date: Fri, 24 Apr 2015 10:54:08 +0000 (+0200) Subject: migen/fhdl/verilog: _printheader/_printcomb, remove default value of arguments which... X-Git-Tag: 24jan2021_ls180~2099^2~78 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=67702f25abdae3af163e41fb2d93cc376026fa19;p=litex.git migen/fhdl/verilog: _printheader/_printcomb, remove default value of arguments which are not used in internal functions. (thanks sb) --- diff --git a/migen/fhdl/verilog.py b/migen/fhdl/verilog.py index e7479211..b81e0e71 100644 --- a/migen/fhdl/verilog.py +++ b/migen/fhdl/verilog.py @@ -152,7 +152,7 @@ def _list_comb_wires(f): def _printheader(f, ios, name, ns, - reg_initialization=True): + reg_initialization): sigs = list_signals(f) | list_special_ios(f, True, True, True) special_outs = list_special_ios(f, False, True, True) inouts = list_special_ios(f, False, False, True) @@ -187,9 +187,9 @@ def _printheader(f, ios, name, ns, def _printcomb(f, ns, - display_run=False, - dummy_signal=True, - blocking_assign=False): + display_run, + dummy_signal, + blocking_assign): r = "" if f.comb: if dummy_signal: