What is a good FSM description format?
Proposal:
{
Reset: /* current state name */ {
Idle: /* next state name */ 'TDI == 0 ', /* transition condition label on the edge */
Reset: 1
},
Idle: {
Idle: 0,
Select_DR: 1
},
...
}
See more examples here: https://observablehq.com/@drom/circular-graph-layout
What is a good FSM description format?
Proposal:
See more examples here: https://observablehq.com/@drom/circular-graph-layout