mirror of
https://github.com/YosysHQ/yosys
synced 2026-07-15 11:45:41 +00:00
24 lines
400 B
Text
24 lines
400 B
Text
library (test_not_data) {
|
|
cell (dff_not_data) {
|
|
area: 1.0;
|
|
pin (QN) {
|
|
direction : output;
|
|
function : "STATE";
|
|
}
|
|
pin (ENA) {
|
|
direction : input;
|
|
clock : true;
|
|
}
|
|
pin (D) {
|
|
direction : input;
|
|
}
|
|
pin (RN) {
|
|
direction : input;
|
|
}
|
|
latch (STATE, STATEN) {
|
|
enable: "ENA";
|
|
data_in: "!D";
|
|
preset : "!RN";
|
|
}
|
|
}
|
|
}
|