diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-12-08 10:43:38 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-12-08 10:43:38 +0100 |
commit | fad9cec47b3aa9fc3d413abee92cc8380d0c0dc4 (patch) | |
tree | 95a4380aa94a740d13a291fb6d11437ac1081c38 /kernel | |
parent | 2903143ae50301dca08d1ab671a046184e8d7c46 (diff) | |
download | yosys-fad9cec47b3aa9fc3d413abee92cc8380d0c0dc4.tar.gz yosys-fad9cec47b3aa9fc3d413abee92cc8380d0c0dc4.tar.bz2 yosys-fad9cec47b3aa9fc3d413abee92cc8380d0c0dc4.zip |
Added $_DFFE_??_ cell types
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/celltypes.h | 4 | ||||
-rw-r--r-- | kernel/rtlil.cc | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/kernel/celltypes.h b/kernel/celltypes.h index 3d9e4cf93..f58ae14c4 100644 --- a/kernel/celltypes.h +++ b/kernel/celltypes.h @@ -158,6 +158,10 @@ struct CellTypes for (auto c1 : list_np) for (auto c2 : list_np) + setup_type(stringf("$_DFFE_%c%c_", c1, c2), {"\\C", "\\D", "\\E"}, {"\\Q"}); + + for (auto c1 : list_np) + for (auto c2 : list_np) for (auto c3 : list_01) setup_type(stringf("$_DFF_%c%c%c_", c1, c2, c3), {"\\C", "\\R", "\\D"}, {"\\Q"}); 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; } |