Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

blocking, non-blocking and if-else

Status
Not open for further replies.

sun_ray

Advanced Member level 3
Joined
Oct 3, 2011
Messages
772
Helped
5
Reputation
10
Reaction score
5
Trophy points
1,298
Activity points
6,828
Are non blocking assignments allowed in if-else statements in Verilog?
Can non blocking assignment statements be used inside if-else statements while to write this if-else statement inside a state of one state machine?
 

The choice between blocking and non-blocking assignments is a matter of programming style and functional intent. Learn the difference between the two assignments and the answers to your questions will become clear.
 
  • Like
Reactions: FvM

    FvM

    Points: 2
    Helpful Answer Positive Rating
deve_59

I am aware between the differences of blocking and non-blocking.

The reason the thread was started is that if we see a book or tutorial of Verilog, the if-else statement is described with blocking assignments only. But if we see code of a d flipflop, we see that if-else being used with non blocking. So the code of a D flipflop contradicts with the if-else definition provided in a Verilog book or tutorial.

Can you also let me know if we should use blocking assignment in the if-else statement if we are using the if-else statement inside the always (*) block whereas this always (*) block is the part of a code of a state machine?
 

The choice between non-blocking or blocking assignment has nothing to do with it is being used inside or outside an if-else/case/for/while or any other procedural statement. The decision is soles based on the relationship between when the variable assignment happens, and when the variable is read.
 

Sequential logic should use non blocking while comibinatorial logic should use blocking. Simple rule to follow...
 

The choice between non-blocking or blocking assignment has nothing to do with it is being used inside or outside an if-else/case/for/while or any other procedural statement. The decision is soles based on the relationship between when the variable assignment happens, and when the variable is read.

Can non-blocking statements be used inside if-else statements?

with it is being

Can you please correct the grammar at the above quote so that the reply in understood better?
 


The choice between non-blocking assignment or blocking assignment has nothing to do with either assignment being used inside or outside an if-else/case/for/while or any other procedural statement.
 

Didn't dave_59 clearly answer the question?

In one Verilog tutorial it was observed that the tutorial defines if-else statement with blocking assignments only and not with non blocking. This is a famous tutorial. In this tutorial the if-else statement definition does not include non blocking assignments.

As a result it is again asked for clarity that whether non-blocking statements can be used inside if-else or not. Please reply if you want to reply about it.

I am aware that when non blocking and blocking assignments should be used in design. The purpose here is to clarify the if-else definition. Id if-else definition also allows non-blocking statements then that tutorial has a mistake into it.
Regards
 

As a result it is again asked for clarity that whether non-blocking statements can be used inside if-else or not.
The answer is of course "yes". But "can" doesn't tell about reasonability, about "should" or "should not". The said references discuss whether blocking or non-blocking assignments are appropriate in a specific context.

I guess, the tutorial has a reason to use blocking assignments in the examples you have read, e.g. because they are combinational always blocks or functions. You can't conclude that the tutorial is mistaken by omitting other cases.

If I wrote a Verilog tutorial, I would include examples of sequential always blocks with non-blocking assignments, e.g. if .. else constructs describing flip-flops and counters (as you find it in the quoted references).
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top