mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 20:38:44 +00:00
synth: improve script documentation. NFC.
This commit is contained in:
parent
a91892bba4
commit
fdff32dd73
|
@ -193,12 +193,12 @@ struct SynthPass : public ScriptPass
|
|||
run("opt");
|
||||
run("wreduce");
|
||||
if (!noalumacc)
|
||||
run("alumacc");
|
||||
run("alumacc", " (unless -noalumacc)");
|
||||
if (!noshare)
|
||||
run("share");
|
||||
run("share", " (unless -noshare)");
|
||||
run("opt");
|
||||
if (!nofsm)
|
||||
run("fsm" + fsm_opts);
|
||||
run("fsm" + fsm_opts, " (unless -nofsm)");
|
||||
run("opt -fast");
|
||||
run("memory -nomap" + memory_opts);
|
||||
run("opt_clean");
|
||||
|
@ -214,8 +214,8 @@ struct SynthPass : public ScriptPass
|
|||
|
||||
if (!noabc) {
|
||||
#ifdef YOSYS_ENABLE_ABC
|
||||
run("abc -fast");
|
||||
run("opt -fast");
|
||||
run("abc -fast", "(unless -noabc)");
|
||||
run("opt -fast", "(unless -noabc)");
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue