module reg4 ( input CLK, input [3:0] D, output reg [3:0] Q ); // Write your code here always @(posedge CLK) begin Q <= D; end endmodule