mirror of https://github.com/YosysHQ/yosys.git
abc9_exe: verify -> &verify -s
This commit is contained in:
parent
843201ec96
commit
3a27906ac6
|
@ -222,9 +222,9 @@ void abc9_module(RTLIL::Design *design, std::string script_file, std::string exe
|
|||
abc9_script += stringf("; &ps -l; &write -n %s/output.aig", tempdir_name.c_str());
|
||||
if (design->scratchpad_get_bool("abc9.verify")) {
|
||||
if (dff_mode)
|
||||
abc9_script += "; verify -s";
|
||||
abc9_script += "; &verify -s";
|
||||
else
|
||||
abc9_script += "; verify";
|
||||
abc9_script += "; &verify";
|
||||
}
|
||||
abc9_script += "; time";
|
||||
abc9_script = add_echos_to_abc9_cmd(abc9_script);
|
||||
|
|
Loading…
Reference in New Issue