icestorm/icefuzz/tests/sb_dffss.v

4 lines
91 B
Coq
Raw Normal View History

2015-07-18 13:10:40 +02:00
module top (input C, D, S, output Q);
SB_DFFSS ff (.C(C), .D(D), .S(S), .Q(Q));
endmodule