mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 06:04:06 +00:00
Make call to "witness -rename" optional (default=on)
Signed-off-by: Claire Xenia Wolf <claire@clairexen.net>
This commit is contained in:
parent
74f33880bd
commit
f49c9ebb29
|
@ -1002,8 +1002,9 @@ class SbyTask(SbyConfig):
|
|||
print("check", file=f) # can't detect undriven wires past this point
|
||||
print("setundef -undriven -anyseq", file=f)
|
||||
print("opt -fast", file=f)
|
||||
print("rename -witness", file=f)
|
||||
print("opt_clean", file=f)
|
||||
if self.opt_witrename:
|
||||
print("rename -witness", file=f)
|
||||
print("opt_clean", file=f)
|
||||
print(f"""write_rtlil ../model/design_prep.il""", file=f)
|
||||
|
||||
proc = SbyProc(
|
||||
|
@ -1233,6 +1234,8 @@ class SbyTask(SbyConfig):
|
|||
self.handle_bool_option("vcd_sim", False)
|
||||
self.handle_bool_option("fst", False)
|
||||
|
||||
self.handle_bool_option("witrename", True)
|
||||
|
||||
self.handle_str_option("smtc", None)
|
||||
self.handle_int_option("skip", None)
|
||||
self.handle_str_option("tbtop", None)
|
||||
|
|
Loading…
Reference in a new issue