always block is not triggering continuously
always@(posedge clk) begin
for (int i=1;i<=32;i=i+1) begin
clk_a=i;
#0.3215
end
for (int j=31;j>=0;j=j-1) begin
clk_a=j;
#0.3215
end
clk_a=0;
end
In 5th clk always block is not triggered ||y for 7th and 9th clocks and this behavior is happening randomly through the simulation.