DescriptionQ1090
Q1090DVDesignASIC interview problem
Nonblocking assignment (NBA) evaluation and update
TechniquesSystemVerilogScheduling regions
DifficultyEasy
TopicSV
LanguageSystemVerilog
Format4 choices
01
Problem
What does the strobe print?
Starting declarationSystemVerilog
logic a = 0, b = 0;
initial begin
#1;
a <= 1;
b <= a;
$strobe("%0b %0b", a, b);
end02
