DescriptionQ218
Q218DVDesignASIC interview problem
Delayed nonblocking assignments
TechniquesSystemVerilogAdvanced scheduling
DifficultyHard
TopicSV
LanguageSystemVerilog
Format4 choices
01
Problem
Which transition history for a is correct?
Starting declarationSystemVerilog
int a = 0;
initial begin
#1 a <= #5 1;
#2 a <= #2 2;
end02
