CodiodeCodiode
Home
Problem Solving
Skill Tracks
My Assignments
Contests
Leaderboard
Community
Settings
Codiode/Problems/Sequential Logic

8-Bit SIPO with Strobe-Gated Output Register

MediumLogic CircuitBuild

Serial data receivers require double buffering to prevent downstream logic from reading intermediate states during shifting. An output register isolates the internal shift register state, updating the visible parallel output only when a complete byte is ready.

The circuit receives a serial data stream on din. On every clock cycle, data shifts into an internal 8-bit shift register: the newest bit enters at position 0, and existing bits shift towards position 7. A separate 8-bit parallel register drives the output dout. When strobe is 1, this output register captures the current 8-bit state of the shift register. When strobe is 0, dout retains its previous value. The internal shift register must continue to shift in din regardless of the strobe signal.

Constraints

  • Implement an 8-bit shift register and a separate 8-bit output register.
  • The output dout must update only when strobe is 1.
  • The shift register must shift continuously on every clock cycle.

Topics

Shift RegistersDouble BufferingData Acquisition

Solve this problem

Place the gates, wire them up and watch the signals settle. Every submission runs on the same simulation engine that grades it.

This problem is part of Codiode Pro. The statement above is free to read.

Sign in to solveSee what Pro unlocks

The circuit builder and code editor need a desktop screen. On a phone, read the problem here and open it on a laptop to solve.

Related problems

  • 3-bit Ripple Counter from Toggle Flip-FlopsEasy
  • D Latch from a 2:1 MUXEasy
  • 2-bit Ring CounterEasy
  • T Flip-Flop from a D Flip-FlopEasy
  • Handshake Deadlock Due to Early ResetHard
  • Reconvergence of Individually Synchronized BitsHard
  • Debug: Asynchronous Clear GlitchHard
  • Clock Gate Enable Crossing DomainsHard

Browse all problems · Learning tracks