Is there any difference between these two?
1.
and(O1,input1,input2);
2.
always(O1 or input1 or input2)
and(O1,input1,input2);
Does the primitive require an always block?
Or it will be accessed whenever values of output (O1) and inputs (input1,input2) changes?