blob: cd89023d6ac036b9b5ae7cd6bf9ce09c72ec66c9 [file] [log] [blame]
module top (input clk, input i, output o);
reg q = 0;
always @(posedge clk) q <= 1;
assign o = q & i;
endmodule