3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-20 23:56:38 +00:00

Merge pull request #58 from alaindargelas/obs_clean_help

obs_clean help
This commit is contained in:
alaindargelas 2025-02-27 11:10:05 -08:00 committed by GitHub
commit 61a6840749
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -255,10 +255,12 @@ struct ObsClean : public ScriptPass {
log("\n");
log(" obs_clean [options] [selection]\n");
log("\n");
log("This pass performs an obversability-based logic removal.\n");
log("This pass performs an obversability-based logic removal. It removes cells by default.\n");
log("\n");
log(" -wires\n");
log(" Also removes dangling wires. This option prevents formal verifciation at this time.\n");
log(" -assigns\n");
log(" Also removes dangling assigns.\n");
log("\n");
}
void execute(std::vector<std::string> args, RTLIL::Design *design) override