From 35d22867671097bc8b9cd86b7e14f08ac9852135 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Tue, 29 Aug 2023 13:12:44 +0200 Subject: [PATCH] Add help message for synth_ecp5 --- techlibs/lattice/synth_lattice.cc | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/techlibs/lattice/synth_lattice.cc b/techlibs/lattice/synth_lattice.cc index d984c302e..b05e5933c 100644 --- a/techlibs/lattice/synth_lattice.cc +++ b/techlibs/lattice/synth_lattice.cc @@ -500,6 +500,18 @@ struct SynthEcp5Pass : public Pass { SynthEcp5Pass() : Pass("synth_ecp5", "synthesis for ECP5 FPGAs") { } + void help() override + { + // |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| + log("\n"); + log(" synth_ecp5 [options]\n"); + log("\n"); + log("This command runs synthesis for ECP5 FPGAs.\n"); + log("\n"); + log("This is wrapper pass, for details take a look at help message for synth_lattice.\n"); + log("\n"); + } + void execute(std::vector args, RTLIL::Design *design) override { args[0] = "synth_lattice";