aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rtlil.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-12-08 10:43:38 +0100
committerClifford Wolf <clifford@clifford.at>2014-12-08 10:43:38 +0100
commitfad9cec47b3aa9fc3d413abee92cc8380d0c0dc4 (patch)
tree95a4380aa94a740d13a291fb6d11437ac1081c38 /kernel/rtlil.cc
parent2903143ae50301dca08d1ab671a046184e8d7c46 (diff)
downloadyosys-fad9cec47b3aa9fc3d413abee92cc8380d0c0dc4.tar.gz
yosys-fad9cec47b3aa9fc3d413abee92cc8380d0c0dc4.tar.bz2
yosys-fad9cec47b3aa9fc3d413abee92cc8380d0c0dc4.zip
Added $_DFFE_??_ cell types
Diffstat (limited to 'kernel/rtlil.cc')
-rw-r--r--kernel/rtlil.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/kernel/rtlil.cc b/kernel/rtlil.cc
index 803d783af..321c39e10 100644
--- a/kernel/rtlil.cc
+++ b/kernel/rtlil.cc
@@ -892,6 +892,11 @@ namespace {
if (cell->type == "$_DFF_N_") { check_gate("DQC"); return; }
if (cell->type == "$_DFF_P_") { check_gate("DQC"); return; }
+ if (cell->type == "$_DFFE_NN_") { check_gate("DQCE"); return; }
+ if (cell->type == "$_DFFE_NP_") { check_gate("DQCE"); return; }
+ if (cell->type == "$_DFFE_PN_") { check_gate("DQCE"); return; }
+ if (cell->type == "$_DFFE_PP_") { check_gate("DQCE"); return; }
+
if (cell->type == "$_DFF_NN0_") { check_gate("DQCR"); return; }
if (cell->type == "$_DFF_NN1_") { check_gate("DQCR"); return; }
if (cell->type == "$_DFF_NP0_") { check_gate("DQCR"); return; }