mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-05 17:14:08 +00:00
24 lines
359 B
Plaintext
24 lines
359 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";
|
|
}
|
|
}
|
|
}
|