631 B
631 B
- Output depends on input and past behavior
- Requires use of storage elements
Latches
SR Latch
SR stands for Set/Reset, and functions like so:
- When a signal comes into
S,Q_ais set on and stays on until a signal comes intoR, at which point the output (Q_a) is reset, back to zero. SandRare interchangeable, it just impacts whetherQ_aorQ_bis set/reset. 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 |
!![]() |
