题解 | #五到一选择器#

五到一选择器

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

全部评论

相关推荐

03-04 22:09
已编辑
南昌大学 golang
西北上单:29届? 请你去三角洲猛攻
点赞 评论 收藏
分享
03-06 18:20
门头沟学院 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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