From ad9bbcbf40451231178ccce67ab5aaff37da81da Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Tue, 23 Jul 2013 16:19:34 +0200 Subject: Added $lut cells and abc lut mapping support --- kernel/celltypes.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'kernel') diff --git a/kernel/celltypes.h b/kernel/celltypes.h index a87dfa1f8..69879f39f 100644 --- a/kernel/celltypes.h +++ b/kernel/celltypes.h @@ -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; } -- cgit v1.2.3