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.

incomplete sensitivity list in always block

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
Suppose in sensitivity list of an always block a few signals are missing by mistake. Can it lead to inference of a latch?

Regards
 

Will it report error when synthesis?
 

Can the simulator see/infer it as a latch?
I think simulator just excutes the RTL code and knows nothing about the structure of curcuit. It's sure that when only the missed signal toggles, always block won't be triggered.
 

Can the simulator see/infer it as a latch?
In my view, the term inference is related to synthesis of hardware elements. In so far a simulator can't "infer" anything. It can model existing hardware as well as describe behaviour of physically infeasible elements.

An imcomplete sensitivity list as discussed in the Sunburst paper has some similarities with a latch in simulation, but it's still different.
Code:
always @(a)
o = a & b;
 

An imcomplete sensitivity list as discussed in the Sunburst paper has some similarities with a latch in simulation, but it's still different.

Which difference are you stating here by stating it is still different?

Regards
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top