3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-06 06:03:23 +00:00

Added $anyconst and $aconst

This commit is contained in:
Clifford Wolf 2016-07-27 15:41:22 +02:00
parent a7b0769623
commit 4056312987
7 changed files with 83 additions and 2 deletions

View file

@ -1030,6 +1030,12 @@ namespace {
return;
}
if (cell->type.in("$aconst", "$anyconst")) {
port("\\Y", param("\\WIDTH"));
check_expected();
return;
}
if (cell->type == "$equiv") {
port("\\A", 1);
port("\\B", 1);