Prev Problem
Next Problem

14. Logical Shifter

Back To All Submissions
Previous Submission
Next Submission

Solving Approach

How do you plan to solve it?

 

 

Code

module shift8 (
    input wire [7:0] A,
    input wire [2:0] shamt,
    output reg [7:0] SHL,
    output reg [7:0] SHR
);
always @(*) begin 
    if (shamt == 3'b000) begin 
        SHL = A;
        SHR = A;
    end else begin 
        SHL = A<<shamt;
        SHR = A>>shamt;
    end
end
endmodule

 

Was this helpful?
Upvote
Downvote