mohi@608
Member level 4
i have a very simple ques on verilog basic
which of the above coding style would be better ??
Code:
module abc(a,b,c);
input a;
input [3:0]b;
output [3:0]c;
Code:
module abc(input a,input [3:0] b, output [3:0] c);
which of the above coding style would be better ??