3
0
Fork 0
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:
Clifford Wolf 2013-07-23 16:19:34 +02:00
parent d815f1c770
commit ad9bbcbf40
7 changed files with 304 additions and 28 deletions

View file

@ -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;
}