「HDLBits题解」Conditional

发布时间:2024年01月15日

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

题目链接:Conditional - HDLBits

module top_module (
    input [7:0] a, b, c, d,
    output [7:0] min);//

    // assign intermediate_result1 = compare? true: false;
    wire [7:0] x, y, z ; 

    assign x = a < b ? a : b ; 
    assign y = x < c ? x : c ;  
    assign z = y < d ? y : d ; 

    assign min = z ;

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