mirror of
https://github.com/YosysHQ/yosys
synced 2025-05-28 17:59:12 +00:00
Added $anyconst support to AIGER back-end
This commit is contained in:
parent
8a717ae1dc
commit
a61c88f122
1 changed files with 7 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue