diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-12-08 15:38:58 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-12-08 15:38:58 +0100 |
commit | 032511fac854cd0507dc84242bb55508c4757441 (patch) | |
tree | bfc393a87f811a41009130be3e20c3ef89bca3af /kernel | |
parent | 7d6e586df8128d4265499ef3f61c1a85ff3cc02a (diff) | |
download | yosys-032511fac854cd0507dc84242bb55508c4757441.tar.gz yosys-032511fac854cd0507dc84242bb55508c4757441.tar.bz2 yosys-032511fac854cd0507dc84242bb55508c4757441.zip |
Added functionality to dff2dffe pass
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/celltypes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/celltypes.h b/kernel/celltypes.h index f58ae14c4..5ba4dd88b 100644 --- a/kernel/celltypes.h +++ b/kernel/celltypes.h @@ -116,6 +116,7 @@ struct CellTypes { setup_type("$sr", {"\\SET", "\\CLR"}, {"\\Q"}); setup_type("$dff", {"\\CLK", "\\D"}, {"\\Q"}); + setup_type("$dffe", {"\\CLK", "\\EN", "\\D"}, {"\\Q"}); setup_type("$dffsr", {"\\CLK", "\\SET", "\\CLR", "\\D"}, {"\\Q"}); setup_type("$adff", {"\\CLK", "\\ARST", "\\D"}, {"\\Q"}); setup_type("$dlatch", {"\\EN", "\\D"}, {"\\Q"}); |