Forum Discussion
2 Replies
- Altera_Forum
Honored Contributor
Normally this happens, if the compiler minimzes the register for bit[0] as no output of the code depends on this bit.
This does not mean necessarly that the bit is no longer in the code but the bit may no longer be accessible by it's intended name. The most easiest way is to add another vector to the code's outputs and assign the vector to the output, thus the bit cannot be optimized away, as it's now an output.. - Altera_Forum
Honored Contributor
Thanks Carlhermann....Your answer is really helpful...