Forum Discussion
Altera_Forum
Honored Contributor
15 years agoQuartus can compreend farily sophisticated initial blocks.
Something like this should do the trick: integer i, j; initial begin for(i = 0; i < 4; i = i+1) begin for(j = 0; j < N; j = j + 1) begin count_to_volt[i][j] = something end end end