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