summaryrefslogtreecommitdiff
path: root/kernel/celltypes.h
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2013-07-23 16:19:34 +0200
committerClifford Wolf <clifford@clifford.at>2013-07-23 16:19:34 +0200
commitad9bbcbf40451231178ccce67ab5aaff37da81da (patch)
treec35b9450a6ffe33d8388fb572fdcbc6a806bc0c5 /kernel/celltypes.h
parentd815f1c77016a50a58260188283918c7aec958ae (diff)
Added $lut cells and abc lut mapping support
Diffstat (limited to 'kernel/celltypes.h')
-rw-r--r--kernel/celltypes.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/kernel/celltypes.h b/kernel/celltypes.h
index a87dfa1f..69879f39 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;
}