3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-05-25 11:26:22 +00:00

aiger: ignore $input_port

This commit is contained in:
Emil J. Tywoniak 2026-03-17 17:32:56 +01:00
parent 8267dee75a
commit 6447a39c0c

View file

@ -337,7 +337,7 @@ struct AigerWriter
continue;
}
if (cell->type == ID($scopeinfo))
if (cell->type == ID($scopeinfo) || cell->type == ID($input_port))
continue;
log_error("Unsupported cell type: %s (%s)\n", cell->type.unescape(), cell);