For example, I have something like this:
reg b5,b3,b2,b0;
wire [5:0] vector;
assign {b5,<unused>,b3,b2,<unused>,b0} = vector;
I don't care about bits 1 and 4 of vector.
What is the best thing to use instead of ? 1'bZ? 1'b0? or 1'bX? Or...?
For example, I have something like this:
reg b5,b3,b2,b0;
wire [5:0] vector;
assign {b5,<unused>,b3,b2,<unused>,b0} = vector;
I don't care about bits 1 and 4 of vector.
What is the best thing to use instead of ? 1'bZ? 1'b0? or 1'bX? Or...?