「HDLBits题解」Multiplexers

发布时间:2024年01月16日

本专栏的目的是分享可以通过HDLBits仿真的Verilog代码 以提供参考 各位可同时参考我的代码和官方题解代码 或许会有所收益

题目链接:Mux2to1 - HDLBits

module top_module( 
    input a, b, sel,
    output out ); 
    assign out = sel ? b : a ; 
endmodule

题目链接:Mux2to1v - HDLBits

module top_module( 
    input [99:0] a, b,
    input sel,
    output [99:0] out );
    assign out = sel ? b : a ; 
endmodule

题目链接:Mux9to1v - HDLBits

module top_module( 
    input [15:0] a, b, c, d, e, f, g, h, i,
    input [3:0] sel,
    output reg [15:0] out );

    always @(*) begin
        case (sel)
            0 : out = a ; 
            1 : out = b ; 
            2 : out = c ; 
            3 : out = d ; 
            4 : out = e ; 
            5 : out = f ; 
            6 : out = g ; 
            7 : out = h ; 
            8 : out = i ; 
            default : out = '1 ; // Set all bits to 1
        endcase
    end

endmodule

题目链接:Mux256to1 - HDLBits

module top_module( 
    input [255:0] in,
    input [7:0] sel,
    output out );
    assign out = in[sel] ;
endmodule

题目链接:Mux256to1v - HDLBits

module top_module( 
    input [1023:0] in,
    input [7:0] sel,
    output reg [3:0] out );

    always @(*) begin
        integer i ; 
        for (i = 0 ; i <= 3 ; i = i + 1)
            out[i] = in[sel * 4 + i] ;
    end

endmodule
文章来源:https://blog.csdn.net/m0_54689021/article/details/135622715
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。