mirror of https://github.com/YosysHQ/icestorm.git
4 lines
79 B
Coq
4 lines
79 B
Coq
|
|
module top (input C, D, output Q);
|
||
|
|
SB_DFF ff (.C(C), .D(D), .Q(Q));
|
||
|
|
endmodule
|