mirror of https://github.com/YosysHQ/yosys.git
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(" passed then a set of signals to be shown is automatically selected.\n");
|
||||
log("\n");
|
||||
log(" -show-inputs, -show-outputs\n");
|
||||
log(" add all module input (output) ports to the list of shown signals\n");
|
||||
log(" -show-inputs, -show-outputs, -show-ports\n");
|
||||
log(" add all module (input/output) ports to the list of shown signals\n");
|
||||
log("\n");
|
||||
log(" -ignore_div_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;
|
||||
continue;
|
||||
}
|
||||
if (args[argidx] == "-show-ports") {
|
||||
show_inputs = true;
|
||||
show_outputs = true;
|
||||
continue;
|
||||
}
|
||||
if (args[argidx] == "-ignore_unknown_cells") {
|
||||
ignore_unknown_cells = true;
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue