mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-26 02:25:35 +00:00
Renamed $lut ports to follow A-Y naming scheme
This commit is contained in:
parent
f092b50148
commit
b64b38eea2
6 changed files with 38 additions and 39 deletions
|
@ -88,7 +88,7 @@ struct CellTypes
|
|||
std::vector<RTLIL::IdString> unary_ops = {
|
||||
"$not", "$pos", "$bu0", "$neg",
|
||||
"$reduce_and", "$reduce_or", "$reduce_xor", "$reduce_xnor", "$reduce_bool",
|
||||
"$logic_not", "$slice"
|
||||
"$logic_not", "$slice", "$lut"
|
||||
};
|
||||
|
||||
std::vector<RTLIL::IdString> binary_ops = {
|
||||
|
@ -108,7 +108,6 @@ struct CellTypes
|
|||
for (auto type : std::vector<RTLIL::IdString>({"$mux", "$pmux"}))
|
||||
setup_type(type, {"\\A", "\\B", "\\S"}, {"\\Y"}, false);
|
||||
|
||||
setup_type("$lut", {"\\I"}, {"\\O"}, false);
|
||||
setup_type("$assert", {"\\A", "\\EN"}, {}, false);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue