blob: 88c420c0b4a4fcbff037b670cd94289b0f66cd11 [file] [log] [blame]
module top(A, clk, rst);
input clk, rst;
output A;
always @(posedge clk, posedge rst) begin
A <= '0';
end; // << like this
endmodule