yosys4gal/techmaps/gal_dff.lib

12 lines
222 B
Plaintext
Raw Permalink Normal View History

2024-03-18 05:06:49 +00:00
library(gal_dff) {
cell(DFF_P) {
ff(IQ, IQN) {
clocked_on: "C";
next_state: "D";
}
pin(D) { direction: input; }
pin(C) { direction: input; clock: true; }
pin(Q) { direction: output; function: "IQ"; }
}
}