Prev Problem
Next Problem

67. Decoder

Back To All Submissions
Previous Submission
Next Submission

Solving Approach

How do you plan to solve it?

a simple binary to one-hot decoder, can be implemented using left shift operator or a case statement 

Code

/*Write your code here*/
module decoder3to8(
    input [2:0] s,
    output [7:0] y
);
    assign y = (8'b0000_0001 << s);
endmodule

 

Was this helpful?
Upvote
Downvote