mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 06:04:06 +00:00
Improve BTOR and AIG yosys scripts
Signed-off-by: Claire Wolf <clifford@clifford.at>
This commit is contained in:
parent
500b526131
commit
0a7013017f
|
@ -407,6 +407,7 @@ class SbyJob:
|
|||
print("# running in %s/model/" % (self.workdir), file=f)
|
||||
print("read_ilang design%s.il" % ("_nomem" if "_nomem" in model_name else ""), file=f)
|
||||
print("flatten", file=f)
|
||||
print("setundef -undriven -anyseq", file=f)
|
||||
print("setattr -unset keep", file=f)
|
||||
print("delete -output", file=f)
|
||||
print("opt -full", file=f)
|
||||
|
@ -429,6 +430,7 @@ class SbyJob:
|
|||
print("# running in %s/model/" % (self.workdir), file=f)
|
||||
print("read_ilang design_nomem.il", file=f)
|
||||
print("flatten", file=f)
|
||||
print("setundef -undriven -anyseq", file=f)
|
||||
print("setattr -unset keep", file=f)
|
||||
print("delete -output", file=f)
|
||||
print("opt -full", file=f)
|
||||
|
@ -436,8 +438,6 @@ class SbyJob:
|
|||
print("opt -fast", file=f)
|
||||
print("abc -g AND -fast", file=f)
|
||||
print("opt_clean", file=f)
|
||||
print("setundef -anyseq", file=f)
|
||||
print("opt_clean", file=f)
|
||||
print("stat", file=f)
|
||||
print("write_aiger -I -B -zinit -map design_aiger.aim design_aiger.aig", file=f)
|
||||
|
||||
|
|
Loading…
Reference in a new issue