blob: 6128631955bb09ca2dac5d56133419d0db71e090 [file] [log] [blame] [edit]
module test(input D, C, R, output reg Q);
always @(posedge C, posedge R)
if (R)
Q <= 0;
else
Q <= D;
endmodule