mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 09:05:32 +00:00
Added $lut cells and abc lut mapping support
This commit is contained in:
parent
d815f1c770
commit
ad9bbcbf40
7 changed files with 304 additions and 28 deletions
|
@ -92,6 +92,7 @@ struct CellTypes
|
|||
cell_types.insert("$mux");
|
||||
cell_types.insert("$pmux");
|
||||
cell_types.insert("$safe_pmux");
|
||||
cell_types.insert("$lut");
|
||||
}
|
||||
|
||||
void setup_internals_mem()
|
||||
|
@ -162,6 +163,8 @@ struct CellTypes
|
|||
return true;
|
||||
if (type == "$fsm" && port == "\\CTRL_OUT")
|
||||
return true;
|
||||
if (type == "$lut" && port == "\\O")
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue