mirror of
https://github.com/YosysHQ/yosys
synced 2025-11-23 14:11:28 +00:00
opensta, sdc_expand: fix help
This commit is contained in:
parent
411fc149df
commit
85d2702ef6
2 changed files with 6 additions and 3 deletions
|
|
@ -16,7 +16,9 @@ struct OpenstaPass : public Pass
|
||||||
log("\n");
|
log("\n");
|
||||||
log(" opensta [options]\n");
|
log(" opensta [options]\n");
|
||||||
log("\n");
|
log("\n");
|
||||||
// TOOD
|
log("Expand SDC file with OpenSTA.\n");
|
||||||
|
log("Internal command like abc. Requires a well-formed design.\n");
|
||||||
|
log("For general SDC expansion with OpenSTA, use the sdc_expand command.\n");
|
||||||
log("\n");
|
log("\n");
|
||||||
log(" -exe <command>\n");
|
log(" -exe <command>\n");
|
||||||
log(" use <command> to run OpenSTA instead of \"%s\"\n", default_opensta_cmd);
|
log(" use <command> to run OpenSTA instead of \"%s\"\n", default_opensta_cmd);
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ PRIVATE_NAMESPACE_BEGIN
|
||||||
|
|
||||||
struct SdcExpandPass : public ScriptPass
|
struct SdcExpandPass : public ScriptPass
|
||||||
{
|
{
|
||||||
SdcExpandPass() : ScriptPass("sdc_expand", "run OpenSTA") { }
|
SdcExpandPass() : ScriptPass("sdc_expand", "expand SDC design with opensta") { }
|
||||||
|
|
||||||
void help() override
|
void help() override
|
||||||
{
|
{
|
||||||
|
|
@ -15,7 +15,8 @@ struct SdcExpandPass : public ScriptPass
|
||||||
log("\n");
|
log("\n");
|
||||||
log(" sdc_expand [options]\n");
|
log(" sdc_expand [options]\n");
|
||||||
log("\n");
|
log("\n");
|
||||||
// TODO
|
log("Expand SDC file with opensta based on arbitrary current design.\n");
|
||||||
|
log("Changes the design but only temporarily.\n");
|
||||||
log("\n");
|
log("\n");
|
||||||
log(" -exe <command>\n");
|
log(" -exe <command>\n");
|
||||||
log(" use <command> to run OpenSTA instead of \"%s\"\n", default_opensta_cmd);
|
log(" use <command> to run OpenSTA instead of \"%s\"\n", default_opensta_cmd);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue