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

/*Write your code here*/
module shift8(
    input [7:0]A,
    input [2:0]shamt,
    output reg [7:0]SHL,SHR
);
always@(*)
begin
    if(shamt == 0)
    begin
        SHL = A;
        SHR = A;

    end
    else
    begin
        SHL = (A << shamt);
        SHR = (A >> shamt);
    end
end
endmodule

 

Was this helpful?
Upvote
Downvote