Differences between blocking and Non-blocking statements in
Verilog?
Answer Posted / amit malik
Blocking statements are executed on after another
represented by '='
Ex. lets take two variables
reg A:0;
reg B:1;
initial
begin
A = B;
B = A;
end
Ans
A = 1
B = 1
Non Blocking
instructions are executed concurrently
represented by '=>'
Ex. lets take two variables
reg A:0;
reg B:1;
initial
begin
A = B;
B = A;
end
Ans
A = 1
B = 0
| Is This Answer Correct ? | 35 Yes | 18 No |
Post New Answer View All Answers
What's the price in 1K quantity?
What was your role in the silicon evaluation/product ramp? What tools did you use?
Explain the Working of a 2-stage OPAMP?
What happens if we delay the enabling of Clock signal?
Draw the Differential Sense Amplifier and explain its working. Any idea how to size this circuit? (Consider Channel Length Modulation)
You have three adjacent parallel metal lines. Two out of phase signals pass through the outer two metal lines. Draw the waveforms in the centre metal line due to interference. Now, draw the signals if the signals in outer metal lines are in phase with each other
What types of CMOS memories have you designed? What were their size? Speed?
Implement a function with both ratioed and domino logic and merits and demerits of each logic?
Explain Cross section of a PMOS transistor?
Explain what is Verilog?
Write a VLSI program that implements a toll booth controller?
Process technology? What package was used and how did you model the package/system? What parasitic effects were considered?
For an AND-OR implementation of a two input Mux, how do you test for Stuck-At-0 and Stuck-At-1 faults at the internal nodes? (You can expect a circuit with some redundant logic)
What is the difference between the mealy and moore state machine?
What is the purpose of having depletion mode device?