Is it synthesizable to use:
case
statement within acase
statementcase
statement within anif
statementif
statement within acase
statement
I can compile it without any errors, but I'm still not sure if it would mess up the hardware structure and make it to complex.
Reason why I'm doing this:
I have a couple of states (state machine), and to make them go through all states I use case statements. But I also need to make some conditions (case
s and if
s) within some of these states, some of them are quite big.