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

Multiplier Critical Path Analysis

HardLogic CircuitAnalyze

Multipliers dominate the combinational delay in modern processors. The circuit provided is a standard 4x4 array multiplier generating an 8-bit product P[7:0] from two 4-bit inputs A[3:0] and B[3:0]. The architecture consists of an initial layer of AND gates for partial product generation, followed by a grid of Half Adders (HA) and Full Adders (FA) to accumulate the sums.

Trace the signal propagation through the adder array. Determine the critical path responsible for the maximum combinational delay, specifically targeting the generation of the final carry bit P[7].

Constraints

  • Assume standard gate delays: AND gates have a delay of 1 unit.
  • Full Adders (FA) have a uniform delay of 2 units for both sum and carry generation.
  • The 4x4 array uses a ripple-carry structure in its final addition row.
  • Inputs A and B arrive simultaneously at time t=0.

Topics

critical-pathcombinational-logictiming-analysismultipliers

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

  • Half Adder Using Only XOR and ANDEasy
  • Floating Point Exception FlagsMedium
  • 1-Bit ALU SliceMedium
  • 4-bit Carry Lookahead BlockHard
  • BCD Adder Correction BlockMedium
  • IEEE 754 Mantissa Alignment ShifterHard
  • Four-Bit Bus AdderEasy
  • Debugging Twos Complement OverflowMedium

Browse all problems · Learning tracks