You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When applying verible rule +port-name-suffix it seems that verible cannot detect missing _i, _o when using Non-ANSI style for module ports declaration.
Example:
moduledelay_dll_coarse (
out,
to_next,
from_prev,
in,
select
);
output out, to_next;
input from_prev, in, select;
endmodule
Actual vs. expected behavior
The tool is not failing.
The correct behaviour would be to see that input/output ports are not following the verible rule +port-name-suffix.