Saved Bookmarks
| 1. |
What Is The Difference Between Mealy And Moore Fsm? |
|
Answer» Mealy FSM USES only input ACTIONS, i.e. output depends on input and STATE. The use of a Mealy FSM leads often to a reduction of the number of states. MOORE FSM uses only entry actions, i.e. output depends only on the state. The advantage of the Moore model is a simplification of the behavior. Mealy FSM uses only input actions, i.e. output depends on input and state. The use of a Mealy FSM leads often to a reduction of the number of states. Moore FSM uses only entry actions, i.e. output depends only on the state. The advantage of the Moore model is a simplification of the behavior. |
|