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.

mixing blocking and nonblocking statements

Status
Not open for further replies.

rocking_vlsi

Member level 5
Joined
Jun 9, 2011
Messages
87
Helped
6
Reputation
12
Reaction score
6
Trophy points
1,288
Activity points
1,833
sorry if it is repeating.

people does mix of both blocking and non-blocking statements.
as

always@(posedge(clk))
begin
temp_var=a&b;
if(condition)
temp_reg<=temp_var;
end

For simulation and synthesis how does it differ?
 

Definitely a race condition in simulation if temp_var is read on a p(osedge clk) in another block.
 

do it like this to separate the combinational and sequential code

Code:
assign temp_var = a & b;

always@(posedge(clk))
begin
if(condition)
temp_reg<=temp_var;
end
 

What tariq said is conventional method, used widely. The point is if they are mixed: Now since order of execution for same activity constraint always block is random, in this case sometimes you may get race condition if blocks using temp_var are executed earlier than this. So if you are really forced to mix, make sure that temp_var is nor used elsewhere at posedge clk.
 
Last edited:

Definitely a race condition in simulation if temp_var is read on a p(osedge clk) in another block.

Dave, correct me if i am wrong. Even if temp_var is read on posedge clk in another always block in a non-blocking assignment, the old value of temp_var will be sampled rather than the new one. For example

Code:
//first always block
always@(posedge(clk))
begin
temp_var=a&b;
if(condition)
temp_reg<=temp_var;
end

//second always block
always@(posedge(clk))
begin
another_temp_reg<=temp_var;
end
 

If (condition) is false, then there is only a blocking assignment to temp_var. The sampled value of temp_var has a race.
 
Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top