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

PIPO: Load and Shift Priority When Both Asserted

MediumLogic CircuitDebug

A Parallel-In Parallel-Out (PIPO) register with shift capabilities stores data or shifts it based on control signals. The LOAD signal must take priority over the SHIFT signal when both are asserted simultaneously.

Expected behavior:

| LOAD | SHIFT | Action | |--------|---------|--------| | 0 | 0 | Hold state | | 0 | 1 | Shift SIN into Q3, shift rest right | | 1 | 0 | Load D[3:0] into Q[3:0] | | 1 | 1 | Load D[3:0] into Q[3:0] |

Simulation shows the register shifting data instead of capturing the parallel input when both control signals are asserted. For test case LOAD=1, SHIFT=1, SIN=0, and D=1111 starting from state Q=1010, the output updates to Q=0101 instead of the expected Q=1111. Inspect the circuit and correct the fault.

Constraints

  • Modify only the control logic routing to the multiplexer select pins.
  • Do not add or remove any D flip-flops.

Topics

shift-registermultiplexerdebugpriority-logic

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