mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Added "sat -show-ports"
This commit is contained in:
parent
e666611534
commit
23e54bda81
|
@ -850,8 +850,8 @@ struct SatPass : public Pass {
|
||||||
log(" show the model for the specified signal. if no -show option is\n");
|
log(" show the model for the specified signal. if no -show option is\n");
|
||||||
log(" passed then a set of signals to be shown is automatically selected.\n");
|
log(" passed then a set of signals to be shown is automatically selected.\n");
|
||||||
log("\n");
|
log("\n");
|
||||||
log(" -show-inputs, -show-outputs\n");
|
log(" -show-inputs, -show-outputs, -show-ports\n");
|
||||||
log(" add all module input (output) ports to the list of shown signals\n");
|
log(" add all module (input/output) ports to the list of shown signals\n");
|
||||||
log("\n");
|
log("\n");
|
||||||
log(" -ignore_div_by_zero\n");
|
log(" -ignore_div_by_zero\n");
|
||||||
log(" ignore all solutions that involve a division by zero\n");
|
log(" ignore all solutions that involve a division by zero\n");
|
||||||
|
@ -1130,6 +1130,11 @@ struct SatPass : public Pass {
|
||||||
show_outputs = true;
|
show_outputs = true;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if (args[argidx] == "-show-ports") {
|
||||||
|
show_inputs = true;
|
||||||
|
show_outputs = true;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
if (args[argidx] == "-ignore_unknown_cells") {
|
if (args[argidx] == "-ignore_unknown_cells") {
|
||||||
ignore_unknown_cells = true;
|
ignore_unknown_cells = true;
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in a new issue