mirror of https://github.com/YosysHQ/yosys.git
48 lines
759 B
Plaintext
48 lines
759 B
Plaintext
library(test) {
|
|
cell (dffn) {
|
|
area : 6;
|
|
ff("IQ", "IQN") {
|
|
next_state : "D";
|
|
clocked_on : "!CLK";
|
|
}
|
|
pin(D) {
|
|
direction : input;
|
|
}
|
|
pin(CLK) {
|
|
direction : input;
|
|
}
|
|
pin(Q) {
|
|
direction: output;
|
|
function : "IQ";
|
|
}
|
|
pin(QN) {
|
|
direction: output;
|
|
function : "IQN";
|
|
}
|
|
}
|
|
cell (dffe) {
|
|
area : 6;
|
|
ff("IQ", "IQN") {
|
|
next_state : "(D&EN) | (IQ&!EN)";
|
|
clocked_on : "!CLK";
|
|
}
|
|
pin(D) {
|
|
direction : input;
|
|
}
|
|
pin(EN) {
|
|
direction : input;
|
|
}
|
|
pin(CLK) {
|
|
direction : input;
|
|
}
|
|
pin(Q) {
|
|
direction: output;
|
|
function : "IQ";
|
|
}
|
|
pin(QN) {
|
|
direction: output;
|
|
function : "IQN";
|
|
}
|
|
}
|
|
}
|