A Mealy system the output of which is 1 if the input is exac
A Mealy system, the output of which is 1 if the input is exactly two 1\'s followed immediately by exactly one or two 0\'s.
Solution
RESET
1
Mealy machine is a finite-state machines. Whose output values are determined both by its current inputs.
W,Z VALUES
| RESET | INPUT | CURRENT STATE | NEXT STATE | OUTPUT |
| 0 | O | A | F | 1 |
| 0 | 0 | F | E | 1 |
