From 0b1d237926ab056c3ed59ecc7d2f39dbcd994986 Mon Sep 17 00:00:00 2001 From: Maxim Kudinov Date: Thu, 16 Oct 2025 11:08:27 +0300 Subject: [PATCH] synth_gowin: fix help hint style --- techlibs/gowin/synth_gowin.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/techlibs/gowin/synth_gowin.cc b/techlibs/gowin/synth_gowin.cc index 5585c0ddb..1a55f9f37 100644 --- a/techlibs/gowin/synth_gowin.cc +++ b/techlibs/gowin/synth_gowin.cc @@ -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"); }