Design a circuit that shifts an -bus one position to the left. must be a parameter of the circuit with default value 8.
module shift_left(in, out);
parameter N=8;
input [N-1:0] in;
output [N-1:0] out;in is the
-bit
input bus.
out is the value of the bus shifted one position to
the left.