mirror of https://github.com/YosysHQ/yosys.git
Added $anyconst support to AIGER back-end
This commit is contained in:
parent
8a717ae1dc
commit
a61c88f122
|
@ -163,6 +163,13 @@ struct AigerWriter
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (cell->type == "$anyconst")
|
||||||
|
{
|
||||||
|
for (auto bit : sigmap(cell->getPort("\\Y")))
|
||||||
|
ff_map[bit] = bit;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
log_error("Unsupported cell type: %s (%s)\n", log_id(cell->type), log_id(cell));
|
log_error("Unsupported cell type: %s (%s)\n", log_id(cell->type), log_id(cell));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue