sakshi gupta
Full Member level 1

In combinatorial always block ,is it good coding style to update the value of element present in the sensitivity list in always block .:?:
For example
always@(b or a)
begin
c=a ;
a=b; --(good or bad)
end
For example
always@(b or a)
begin
c=a ;
a=b; --(good or bad)
end