blob: 50e7fc264a132afd7f91379ef73f17407afc9a4b [file] [log] [blame]
module top(input clk, input a, output reg q);
always @(posedge clk)
q <= ~a;
endmodule