3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-10-18 21:40:28 +00:00

synth_gowin: fix help hint style

This commit is contained in:
Maxim Kudinov 2025-10-16 11:08:27 +03:00 committed by Lofty
parent 8c347826f6
commit 6535995005

View file

@ -330,10 +330,10 @@ struct SynthGowinPass : public ScriptPass
run("techmap -map +/gowin/cells_map.v");
run("opt_lut_ins -tech gowin");
if (setundef || help_mode)
run("setundef -undriven -params -zero", "(only if -setundef used)");
run("setundef -undriven -params -zero", "(only if -setundef)");
run("hilomap -singleton -hicell VCC V -locell GND G");
if (!vout_file.empty() || help_mode) // vendor output requires 1-bit wires
run("splitnets -ports", "(only if -vout used)");
run("splitnets -ports", "(only if -vout)");
run("clean");
run("autoname");
}