Re: [myhdl-list] enums and non-local
Brought to you by:
jandecaluwe
From: Christopher F. <chr...@gm...> - 2015-02-11 16:35:54
|
<snip> > > You're trying to assign state here: > > elif state == t_state.CALC: > a.next = b > state = t_state.WAIT > > Perhaps you want `state.next = t_state.WAIT`? > Yup, what Henry said. Regards, Chris |