Altera_Forum
Honored Contributor
13 years agoHow to adjust bus width?
In my design, sometimes I need to adjust bus width such as: wire [10:0] a; wire [5:0] b; assign b={a[10:9],a[3:0]}; I always program like this. But it seems in some design it wil...