mirror of https://github.com/zachjs/sv2v.git
10 lines
184 B
Coq
10 lines
184 B
Coq
|
|
module top;
|
||
|
|
reg [3:0] arr;
|
||
|
|
always @* begin : block_name
|
||
|
|
integer i;
|
||
|
|
for (i = 0; i < 4; i++)
|
||
|
|
arr[i] = i;
|
||
|
|
end
|
||
|
|
initial $display(arr);
|
||
|
|
endmodule
|