Prev Problem
Next Problem

14. Logical Shifter

Back To All Submissions
Previous Submission
Next Submission

Solving Approach

How do you plan to solve it?

the data shift by left <<

the data shift by right >>

 

Code

module shift8(
    input [7:0] A,
    input [2:0] shamt,
    output [7:0] SHL,
    output [7:0] SHR
);
assign SHL = A << shamt ;
assign SHR = A >> shamt ;
endmodule

 

Was this helpful?
Upvote
Downvote