3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-10-08 08:51:56 +00:00

Added DFFSR cell to techlibs/cmos/cmos_cells.lib

This commit is contained in:
Clifford Wolf 2013-10-31 12:27:35 +01:00
parent 0efe16f118
commit 0b4a64ac6a
2 changed files with 26 additions and 0 deletions

View file

@ -29,4 +29,18 @@ library(demo) {
pin(Q) { direction: output;
function: "IQ"; }
}
cell(DFFSR) {
area: 18;
ff(IQ, IQN) { clocked_on: C;
next_state: D;
preset: S;
clear: R; }
pin(C) { direction: input;
clock: true; }
pin(D) { direction: input; }
pin(Q) { direction: output;
function: "IQ"; }
pin(S) { direction: input; }
pin(R) { direction: input; }
}
}