Verilog-2001 added the much-heralded @* combinational sensitivity list token. Although the
combinational sensitivy list could be written using any of the following styles:always @*always @(*)always @( * )
always @ ( * )
or any other combination of the characters @ ( * ) with or without white space, the author prefers the firstand most abbreviated style. To the author, "always @*" clearly denotes that a combinational block of logicfollows.The Verilog-2001 "always @*" coding style has a number of important advantages over the morecumbersome Verilog-1995 combinational sensitivity list coding style:· Reduces coding errors - the code informs the simulator that the intended implementation iscombinational logic, so the simulator will automatically add and remove signals from the sensitivitylist as RTL code is added or deleted from the combinational always block. The RTL coder is no longerburdened with manually insuring that all of the necessary signals are present in the sensitivity list. Thiswill reduce coding errors that do not show up until a synthesis tool or linting tool reports errors in thesensitivity list. The basic intent of this enhancement is to inform the simulator, "if the synthesis toolwants the signals, so do we!"· Abbreviated syntax - large combinational blocks often meant multiple lines of redundant signalnaming in a sensitivity list. The redundancy served no appreciable purpose and users will gladly adoptthe more concise and abbreviated @* syntax.· Clear intent - an always @* procedural block informs the code-reviewer that this block is intended tobehave like, and synthesize to, combinational logic.