mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 14:17:27 +02:00
Removed $aconst cell type
This commit is contained in:
@@ -118,7 +118,6 @@ struct CellTypes
|
||||
setup_type("$assume", {A, EN}, pool<RTLIL::IdString>(), true);
|
||||
setup_type("$initstate", pool<RTLIL::IdString>(), {Y}, true);
|
||||
setup_type("$anyconst", pool<RTLIL::IdString>(), {Y}, true);
|
||||
setup_type("$aconst", pool<RTLIL::IdString>(), {Y}, true);
|
||||
setup_type("$equiv", {A, B}, {Y}, true);
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1030,7 +1030,7 @@ namespace {
|
||||
return;
|
||||
}
|
||||
|
||||
if (cell->type.in("$aconst", "$anyconst")) {
|
||||
if (cell->type == "$anyconst") {
|
||||
port("\\Y", param("\\WIDTH"));
|
||||
check_expected();
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user