Altera_Forum
Honored Contributor
12 years agoUsing sensitivity list for always block
Hello, I am just having a small confusion regarding best usages of sensitivity list. I understand that for combinational logic synthesis, all the signals should be included in the list (always @ (*)). However, is it a bad practice (or bad for synthesis) to have the always block be sensitive to posedge of some signal other than clk or rst ? Just an example...
always @ (posedge clk, posedge somesignal) begin ... ... end or always @ (posedge somesignal) begin ... ... end thanks!