15 lines
336 B
Markdown
15 lines
336 B
Markdown
- Output depends on input and past behavior
|
|
- Requires use of storage elements
|
|
|
|
# Latches
|
|
## SR Latch
|
|
SR
|
|
Truth table:
|
|
|
|
| $S$ | $R$ | $Q_a$ | $Q_b$ |
|
|
| --- | --- | ----- | ----- |
|
|
| 0 | 0 | 0/1 | 1/0 |
|
|
| 0 | 1 | 0 | 1 |
|
|
| 1 | 0 | 1 | 0 |
|
|
| 1 | 1 | 0 | 0 |
|
|
![[Pasted image 20250303095542.png]] |