case调试思路

always @(posedge clk or negedge rst_n) begin
    if(~rst_n) begin
        result <=0;
    end else begin
        case ({A,B})
        2'b00: result <= 4'b0001;
        2'b01: result <= 4'b0010;
        2'b10: result <= 4'b0100;
        2'b11: result <= 4'b1000;
        default: result <= result;
    end
end

问题描述:

        在A=1,B=0时,出现result=0情况,而不是正常的4'b0001。

分析方法一:

always @(posedge clk or negedge rst_n) begin
    if(~rst_n) begin
        result <=0;
    end else begin
        case ({A,B})
            2'b00: result <= 4'b0001;
            2'b01: result <= 4'b0010;
            2'b10: result <= 4'b0100;
            2'b11: result <= 4'b1000;
            default: result <= 4'b1010;
    end
end

来判断result是否进入case语句。发现波形显示result=1010,说明程序执行default语句。

always @(posedge clk or negedge rst_n) begin
    if(~rst_n) begin
        result <=0;
    end else begin
        case ({A,B})
            2'b00: result <= 4'b0001;
            2'b01: result <= 4'b0010;
            2'b10: result <= 4'b0100;
            2'b11: result <= 4'b1000;
            default: begin 
                        result <= 4'b1010;
                        $display("%h, %h, %h", A, B, {A,B});
                     end
    end
end

通过display,此时A=0,B=0;

原因A、B判断时间和clk时钟上升沿对应问题,因此,将上升沿触发(posedge clk)改成下降沿触发(negedge clk),只是在这个时钟周期有影响(能正常执行case语句),对后面的时钟周期无影响。

always @(negedge clk or negedge rst_n) begin
    if(~rst_n) begin
        result <=0;
    end else begin
        case ({A,B})
        2'b00: result <= 4'b0001;
        2'b01: result <= 4'b0010;
        2'b10: result <= 4'b0100;
        2'b11: result <= 4'b1000;
        default: result <= result;
    end
end

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

狮子座硅农(Leo ICer)

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值