blob: fd27a3fc56ee354464d83597b0c1a1e93fd3a8ff [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(1'b0), .Q(q));
endmodule