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