Forum Discussion
Altera_Forum
Honored Contributor
8 years ago
Bufftemp(2*j,2*i+1)<= Im(2*j,2*i+1) - 5;
Buffsig<=Bufftemp(i,j);
OutResult<=Buffsig;
This is 3 clocks to get from i/j values top the outResult. One clock for each assignment. --- Quote Start --- -Modelsim is not work often with my designs ! I am using Quartus ! --- Quote End --- Why not? Maybe there is a problem? isnt that what we are here for? Quartus only does post synthesis simulation so is very slow and doesnt actually simulate your code, just the compiled version of it. RTL simulation would be much faster when you get to larger designs Yes, you can assign different elements of an array in different processes IF you are not using a loop. I suggest looking at the bits in the error. Or maybe post the whole code so we can help?