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.

Upper limit for sensitivity list elements in combinational block

Status
Not open for further replies.

star_golden

Junior Member level 1
Joined
Jul 3, 2013
Messages
16
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
99
Hi all,

Is there is any upper limit in the sensitivity list for a combinatorial always block..?

For eg :

If the combinatorial always block code is like :

always @ (posedge a or posedge b or negedge c...)
begin
end

My question is :
Is there like only 2 elements must be present inside the always block or can we write more..?

Thanks and regards
 

Code:
always @ (posedge a or posedge b or negedge c...)
models edge sensitive sequential, not combinational logic.
 

a, b or c - Not clocks

So, I did not get how it models sequential logic..?
 

To model combinational logic, you'll write
Code:
always @ (a or b or c...)
or
Code:
always @ (a, b, c...)

There's no limitation on the number of events in the event expression.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top