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