mirror of
https://github.com/YosysHQ/yosys
synced 2026-05-25 11:26:22 +00:00
fixup! cxxrtl: ignore $input_port
This commit is contained in:
parent
b97a8cdfe3
commit
a4398d4d90
1 changed files with 2 additions and 1 deletions
|
|
@ -1532,7 +1532,8 @@ struct CxxrtlWorker {
|
||||||
f << (cell->getParam(ID::CLR_POLARITY).as_bool() ? "" : ".bit_not()") << ");\n";
|
f << (cell->getParam(ID::CLR_POLARITY).as_bool() ? "" : ".bit_not()") << ");\n";
|
||||||
}
|
}
|
||||||
// Internal cells
|
// Internal cells
|
||||||
} else if (is_internal_cell(cell->type) && cell->type != ID($input_port)) {
|
} else if (cell->type == ID($input_port)) {
|
||||||
|
} else if (is_internal_cell(cell->type)) {
|
||||||
log_cmd_error("Unsupported internal cell `%s'.\n", cell->type);
|
log_cmd_error("Unsupported internal cell `%s'.\n", cell->type);
|
||||||
// User cells
|
// User cells
|
||||||
} else if (for_debug) {
|
} else if (for_debug) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue