"5 state counter example"
Tags: "public", "project"
:PROPERTIES:
:ID: 7341f290-2b62-4c8c-b5fa-17e48594a14c
:mtime: 20231025031905
:ctime: 20231025031904
:END:
#+title: 5 state counter example
#+filetags: :public:project:
* Example Problem:
Example: create a 5 state [[id:eb73ecc4-1c5a-4e40-90c2-112c61f0e8e8][counter circuit.]]
* Excitation Table
We have 3 [[id:2c4ec126-9394-40b4-82e0-209cd3501c4b][flip-flop]]s
here is the [[id:4978b171-3ac9-4f0b-8a68-ae4e9d551efc][excitation table]] for our flipflops.
| cba | c'b'a' |
|-----+--------|
| 000 | 001 |
| 001 | 010 |
| 010 | 011 |
| 011 | 100 |
| 100 | 000 |
* Logic
\[a' = \overline{a} . \overline{c}\]
\[c' = a . b\]
\[b' = a \oplus b\]
See Also
counter circuitflip-flopexcitation tableLeave your Feedback in the Comments Section