【HDLBits刷题】【Procedures】Always if

这篇博客介绍了如何使用Verilog语言实现一个2-to-1多路选择器。通过if语句和连续赋值两种方式展示了如何根据条件选择输出a或b。当sel_b1和sel_b2都为真时,选择b作为输出;否则选择a。示例代码中包含了两种实现方式的比较,并提供了相应的测试用例。
摘要由CSDN通过智能技术生成

An if statement usually creates a 2-to-1 multiplexer, selecting one input if the condition is true, and the other input if the condition is false.

always @(*) begin
    if (condition) begin
        out = x;
    end
    else begin
        out = y;
    end
end

This is equivalent to using a continuous assignment with a conditional operator:

assign out = (condition) ? x : y;

However, the procedural if statement provides a new way to make mistakes. The circuit is combinational only if out is always assigned a value.

A bit of practice

Build a 2-to-1 mux that chooses between a and b. Choose b if both sel_b1 and sel_b2 are true. Otherwise, choose a. Do the same twice, once using assign statements and once using a procedural if statement.

sel_b1sel_b2out_assign
out_always
00a
01a
10a
11b
// synthesis verilog_input_version verilog_2001
module top_module(
    input a,
    input b,
    input sel_b1,
    input sel_b2,
    output wire out_assign,
    output reg out_always   ); 
    
    assign out_assign = (sel_b1 == 1 && sel_b2 == 1) ? b : a;
    always@(*)
        begin
            if(sel_b1 == 1 && sel_b2 == 1)
                out_always = b;
            else
                out_always = a;
        end
endmodule

 还可以写成下面这样

// synthesis verilog_input_version verilog_2001
module top_module(
    input a,
    input b,
    input sel_b1,
    input sel_b2,
    output wire out_assign,
    output reg out_always   ); 
    assign out_assign = ({sel_b1,sel_b2} == 2'b11) ? b:a;
    always @(*)
        if ({sel_b1,sel_b2} == 2'b11)
            out_always = b;
        else out_always = a;
 
endmodule

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值