blob: df90f5c7dfd9ec71c4725bf25491eab98d8d6989 [file] [log] [blame]
module top(input clk, input d, input r, input s, output q);
GSR gsr(.GSR(r));
FD1P3JX ff(.D(d), .SP(1'b1), .PD(s), .CK(clk), .Q(q));
endmodule