题解 | #五到一选择器#

五到一选择器

https://www.nowcoder.com/practice/54927c0e26604247aa990cdf03e52953

`timescale 1ns/1ns

module top_module( 
    input [3:0] a, b, c, d, e, 
    input [2:0] sel,
    output reg [3:0] out );
    always@(*)begin
    case(sel)
    2'b00://
    begin
        out[3:0] <= a[3:0];
    end
    2'b01://
    begin
        out[3:0] <= b[3:0];
    end
    2'b10://
    begin
        out[3:0] <= c[3:0];
    end
    2'b11://
    begin
        out[3:0] <= d[3:0];
    end
    default : out <= 4'b00;
    endcase
    end
    

endmodule

全部评论

相关推荐

想踩缝纫机的小师弟练...:不理解你们这些人,要放记录就把对方公司名字放出来啊。不然怎么网暴他们
点赞 评论 收藏
分享
我已急😭:这科软不就是可以拿钱买吗?我记得那一年一个学校买狠了,数学排名比北大高。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务