K
kb33
Guest
Hi,
Can anyone please tell me why the first FOR loop is being synthesized,
and the second one is not?
Thanks
Kanchan
//Synthesizable...
for (q=0; q < `NUM_RSRC/2; q=q+1)
..
..
..
//Not Synthesizable...
for (q=bsort_index; q < (bsort_index + `NUM_RSRC/2); q=q+1)
..
..
..
Here, q is an integer and bsort_index is a register.
Can anyone please tell me why the first FOR loop is being synthesized,
and the second one is not?
Thanks
Kanchan
//Synthesizable...
for (q=0; q < `NUM_RSRC/2; q=q+1)
..
..
..
//Not Synthesizable...
for (q=bsort_index; q < (bsort_index + `NUM_RSRC/2); q=q+1)
..
..
..
Here, q is an integer and bsort_index is a register.