When using the ANSI style, it is not legal to declare empty ports in the port list. Such empty ports will be flagged as errors by Sigasi (rule 141).
VERILOG
module empty_ansi_port(
input a,
,
output b
);
endmoduleWhen using the ANSI style, it is not legal to declare empty ports in the port list. Such empty ports will be flagged as errors by Sigasi (rule 141).
module empty_ansi_port(
input a,
,
output b
);
endmodule