Shift left

Design a circuit that shifts an N-bus one position to the left. N must
be a parameter of the circuit with default value 8.

Specification

    module shift_left(in, out);
        parameter N=8;
        input [N-1:0] in;
        output [N-1:0] out;

Input

- in is the N-bit input bus.

Output

- out is the value of the bus shifted one position to the left.

Problem information

Author: Jordi Cortadella

Generation: 2026-02-03T12:18:45.031Z

© Jutge.org, 2006–2026.
https://jutge.org
