Skip to content

Commit

Permalink
Add help message for synth_ecp5
Browse files Browse the repository at this point in the history
  • Loading branch information
mmicko committed Aug 29, 2023
1 parent 6a0c637 commit d0816b8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions techlibs/lattice/synth_lattice.cc
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,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<std::string> args, RTLIL::Design *design) override
{
args[0] = "synth_lattice";
Expand Down

0 comments on commit d0816b8

Please sign in to comment.