Prev Problem
Next Problem

67. Decoder

Back To All Submissions
Previous Submission
Next Submission

Solving Approach

How do you plan to solve it?

 

Code

/*Write your code here*/
module decoder3to8 (
    input [2:0] s,
    output reg [7:0] y
);
always @ (*) begin
    case(s)
    3'd0 : y = 8'd1;
    3'd1 : y = 8'd2;
    3'd2 : y = 8'd4;
    3'd3 : y = 8'd8;
    3'd4 : y = 8'd16;
    3'd5 : y = 8'd32;
    3'd6 : y = 8'd64;
    3'd7 : y = 8'd128;
    endcase
end
endmodule

 

Was this helpful?
Upvote
Downvote