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.

How will synthesized hardware look like?

Status
Not open for further replies.

babaduredi

Member level 1
Joined
Apr 28, 2011
Messages
39
Helped
9
Reputation
18
Reaction score
9
Trophy points
1,288
Location
Bangalore
Activity points
1,543
Hi,
We have two scenarios:

module dff_blocking(d, clk, q)
input d,clk;
output q;
reg q,q1;
always@(posedge clk)
begin
q=d;
q1=q;
end
endmodule


and another one with non-blocking

module dff_nonblocking(d, clk, q)
input d,clk;
output q;
reg q,q1;
always@(posedge clk)
begin
q<=d;
q1<=q;
end
endmodule


How will the hardware look like in both cases post synthesis? second one looks simple but i don't have idea for first one.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top