digital circuits: rm circuit example
This commit is contained in:
parent
d09bc82729
commit
3b1cace74f
1 changed files with 12 additions and 20 deletions
|
@ -20,7 +20,7 @@ In addition the JK Flip-Flop has a **toggle** function. When this is executed, w
|
|||
The possible state changes for the JK Flip-Flop are detailed below:
|
||||
|
||||
| J | K | Clock | Q state | Operation |
|
||||
|--- |--- |------- |--------------------------- |----------- |
|
||||
| --- | --- | ----- | ------------------------- | --------- |
|
||||
| 0 | 0 | Pulse | Maintain previous value | Hold |
|
||||
| 0 | 1 | Pulse | 0 | Reset |
|
||||
| 1 | 0 | Pulse | 1 | Set |
|
||||
|
@ -30,8 +30,6 @@ A JK Flip-Flop can execute on either the positive or negative pulse. Below are t
|
|||
|
||||

|
||||
|
||||
|
||||
|
||||
## T Flip-Flops
|
||||
|
||||
Another type of Flip-Flop can be created by connecting the _J_ and _K_ inputs of a JK Flip-Flop to each other. This reduces the possible states to two: toggle current state or maintain current state. Its overall logic is therefore reduced to just two lines of the previous state table: the state that obtains when _J_ and _K_ are $0 0$ or $1 1$.
|
||||
|
@ -39,14 +37,8 @@ Another type of Flip-Flop can be created by connecting the _J_ and _K_ inputs of
|
|||
Thus the state table for the T Flip-Flop is:
|
||||
|
||||
| T | Clock | Q state | Operation |
|
||||
|--- |------- |--------------------------- |----------- |
|
||||
| --- | ----- | ------------------------- | --------- |
|
||||
| 0 | Pulse | Maintain previous value | Hold |
|
||||
| 0 | Pulse | Inverse of previous value | Toggle |
|
||||
|
||||

|
||||
|
||||
|
||||
<iframe src="https://withdiode.com/embed/4f015341-dc37-49e6-912a-42a580a1c92e" style="width:100%; height:500px; border:1px solid rgba(0,0,0,0.1); border-radius: 0.5rem; overflow:hidden;" title="LED & Switch" allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking" sandbox="allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts" ></iframe>
|
||||
|
||||
|
||||
https://wokwi.com/
|
Loading…
Add table
Reference in a new issue