Tool/software: Code Composer Studio
Hello
Using the CLB tool, I simulate and read the result.
I have the FSM_0 with following equation:
eqn_s1 = (e1 & s1) | (e0 & s0 & ~s1)
In simulation, I have e0 = 1, s0 = 1, s1 = 0, then s1 should pass to 1 on the next Clock.
But stay to 0.
I have missed something?
Note: try also this equation with the same result: eqn_s1 = (e1 & s1) | (e0 & s0 & !s1)