iverilog/ivtest/vhdl_tests/pr2147135b.v

17 lines
211 B
Verilog

module test( clk, a, b );
input clk;
output [0:0] a;
output b;
reg [0:0] a;
reg b;
integer i = 5;
always @(posedge clk) begin
a[i] <= 1'b0;
b <= 1'b0;
end
endmodule