diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-07-23 16:19:34 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-07-23 16:19:34 +0200 |
commit | ad9bbcbf40451231178ccce67ab5aaff37da81da (patch) | |
tree | c35b9450a6ffe33d8388fb572fdcbc6a806bc0c5 /kernel | |
parent | d815f1c77016a50a58260188283918c7aec958ae (diff) | |
download | yosys-ad9bbcbf40451231178ccce67ab5aaff37da81da.tar.gz yosys-ad9bbcbf40451231178ccce67ab5aaff37da81da.tar.bz2 yosys-ad9bbcbf40451231178ccce67ab5aaff37da81da.zip |
Added $lut cells and abc lut mapping support
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/celltypes.h | 3 |
1 files changed, 3 insertions, 0 deletions
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; } |