DescriptionQ367
Q367DesignAMDASIC interview problem
Distinguish a latch from a flip-flop
TechniquesDesignDigital fundamentals
DifficultyEasy
TopicRTL Design
LanguageSystemVerilog
Format4 choices
01
Problem
Block A uses `always_latch if (en) q_a <= d;`. Block B uses `always_ff @(posedge clk) q_b <= d;`. Which statement correctly describes the storage behavior?
02
