1
0
mirror of synced 2026-03-28 02:53:32 +00:00

cxxrtl: ignore $input_port

This commit is contained in:
Emil J. Tywoniak
2026-03-17 18:06:07 +01:00
parent 55189bc65c
commit b97a8cdfe3

View File

@@ -1532,7 +1532,7 @@ struct CxxrtlWorker {
f << (cell->getParam(ID::CLR_POLARITY).as_bool() ? "" : ".bit_not()") << ");\n";
}
// Internal cells
} else if (is_internal_cell(cell->type)) {
} else if (is_internal_cell(cell->type) && cell->type != ID($input_port)) {
log_cmd_error("Unsupported internal cell `%s'.\n", cell->type);
// User cells
} else if (for_debug) {