yosys4gal/extractions/ndff.v

10 lines
142 B
Coq
Raw Normal View History

module NDFF_P (C, D, Q);
input C, D;
output Q;
2024-03-18 05:06:49 +00:00
wire Y;
2024-03-18 05:06:49 +00:00
$_NOT_ not_inst (.A(D), .Y(Y));
DFF_P dff_inst (.D(Y), .C(C), .Q(Q));
2024-03-18 05:06:49 +00:00
endmodule