module dff_sync_reset ( input CLK, input RST, input D, output reg Q ); always @(posedge CLK) begin if (RST) Q <= 1'b0; else Q <= D; end endmodule