In system verilog, I know you can route a partial bus with array[15:8] as a way to split lanes. Is there any way to do this in a non continuous way. For example, lane 2,3,8,9 .
Alternative to Enze Chi way is to use concatenation:
wire [3:0] a;
assign a = {b[9:8],b[3],b[2]};
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.OkRead more