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
Visit site
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.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…