I am trying to do the following : concat = {concat[7:0],clk}
inside a forever loop as below :
bit [7:0] concat;
concat = 0;
forever begin
@(posedge clk);
concat = {concat[7:0],clk};
end
I wanted to know what value will it contain after 8 clock iterations at any point of time, if the initial value of concat = 0
.
Can it be different from 'hAA
or 'h55
at any point of time?