blob: 7c62ac30553e45bf56c0c05f742aa11817d8bafb [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'b0), .PD(s), .CK(clk), .Q(q));
endmodule