P
Paul Marciano
Guest
Hi,
In terms of style/synthesis is there any reason to prefer:
reg [5:0] v;
wire sig;
v <= { v[4:0], sig };
over:
v <= (v << 1) | sig;
I believe these are equivalent.
Regards,
Paul.
In terms of style/synthesis is there any reason to prefer:
reg [5:0] v;
wire sig;
v <= { v[4:0], sig };
over:
v <= (v << 1) | sig;
I believe these are equivalent.
Regards,
Paul.