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

Asynchronous Reset Synchronizer

MediumLogic CircuitBuild

Large digital systems require resets that assert immediately to handle dead-clock conditions but deassert cleanly with the clock edge to prevent recovery time violations. The asynchronous reset synchronizer bridges this gap by asserting the internal reset asynchronously and releasing it synchronously.

The circuit takes an active-low asynchronous reset rst_ni and a clock clk. It outputs a synchronized active-low reset rst_no. When rst_ni goes low, rst_no must immediately go low regardless of the clock state. When rst_ni goes high, rst_no must transition high only after two consecutive rising edges of clk.

| Sequence | rst_ni | clk | rst_no | |----------|----------|-------|----------| | Assert | 0 | 0 | 0 | | Deassert | 1 | 0 | 0 | | Edge 1 | 1 | 1 | 0 | | Hold | 1 | 0 | 0 | | Edge 2 | 1 | 1 | 1 |

Constraints

  • Implement using exactly two D flip-flops with asynchronous active-low reset pins.
  • Tie the data input of the first flip-flop to logic high (1).
  • Connect the external asynchronous reset directly to the reset pins of both flip-flops.

Topics

sequentialresetsynchronizer

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

  • Binary to HexEasy
  • 1-to-4 Demultiplexer from AND and NOT GatesEasy
  • 2-to-4 Line Decoder with Active-High EnableEasy
  • Full Adder from Half AddersEasy
  • Odd Parity Bit Generator for 3-bit DataEasy
  • Hex Nibble to BinaryEasy
  • Extract Expression from a Two-Level AND-OR Circuit with Fan-OutEasy
  • The Two Zeros Problem in Sign-MagnitudeEasy

Browse all problems · Learning tracks