Difficulty: Easy
Correct Answer: strobe line
Explanation:
Introduction / Context:Serial-in, parallel-out (SIPO) shift registers receive bits serially but often need to present a stable 4-bit word to downstream logic. Designers use a separate output latch with a strobe (latch enable) to avoid glitches while shifting.
Given Data / Assumptions:
Concept / Approach:
During shifting, internal register stages change every clock. A strobe (latch enable) captures the register contents into an output latch at a defined instant, isolating downstream circuitry from intermediate transitions. This improves data integrity and timing closure.
Step-by-Step Solution:
Shift in 4 bits over 4 clocks while outputs remain latched.Assert the strobe once to transfer the stable 4-bit word to the parallel outputs.Downstream logic now reads a coherent nibble until the next strobe.Verification / Alternative check:
Datasheets for classic parts (e.g., 74HC595) show a shift register feeding a storage register; the storage register is updated by a RCLK/LATCH signal (strobe), ensuring accurate outputs.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
strobe line
Discussion & Comments