2019-09-24 23:35:06 -04:00
|
|
|
module top;
|
|
|
|
|
logic [3:0] arr;
|
2020-11-24 18:09:07 -07:00
|
|
|
initial
|
2019-09-24 23:35:06 -04:00
|
|
|
for (int unsigned i = 0; i < 4; i++)
|
|
|
|
|
arr[i] = i;
|
|
|
|
|
initial $display(arr);
|
2019-09-25 19:42:31 -04:00
|
|
|
|
|
|
|
|
parameter unsigned foo = 1;
|
|
|
|
|
localparam unsigned bar = 1;
|
|
|
|
|
initial $display(foo, bar);
|
2019-09-24 23:35:06 -04:00
|
|
|
endmodule
|