HDLBits verlog刷题-Finding bugs in code-05_Bugs case

网站链接

HDLBITs_reading simulations
该部分

题目描述-Bugs case

This combinational circuit is supposed to recognize 8-bit keyboard scancodes for keys 0 through 9. It should indicate whether one of the 10 cases were recognized (valid), and if so, which key was detected. Fix the bug(s).

8位的键盘, 用唯一的8位数据 分别代表密码0–9
输入8位code,有对应上的0–9被输出(key was detected) vilid=1
注意
out 3和9的code 故意给错,服了

Module Declaration
module top_module (
    input [7:0] code,
    output reg [3:0] out,
    output reg valid=1 );

参考资料

代码部分

/**************分析***************************
8位的键盘   用唯一的8位数据    分别代表0--9
valid  输入code,有对应的0--9被输出(key was detected)   vilid=1

********************************************/
module top_module (
    input [7:0] code,
    output reg [3:0] out,
    output reg valid=1 );//
/***********有bug****************************
     always @(*)
        case (code)
            8'h45: out = 0;
            8'h16: out = 1;
            8'h1e: out = 2;
            8'h26: out = 3;//改h
            8'h25: out = 4;
            8'h2e: out = 5;
            8'h36: out = 6;
            8'h3d: out = 7;
            8'h3e: out = 8;
            8'h46: out = 9;//位宽错误,服了
            default: valid = 0;
        endcase
************************************************/
/**************正确实现*************************/
  always @(*)
        case (code)
            8'h45: out = 0;
            8'h16: out = 1;
            8'h1e: out = 2;
            8'd26: out = 3;
            8'h25: out = 4;
            8'h2e: out = 5;
            8'h36: out = 6;
            8'h3d: out = 7;
            8'h3e: out = 8;
            6'h46: out = 9;
            default: out = 0;//如果code为其它数   out=0
        endcase   
    //组合逻辑  out为0且输入的code不代表密码0时  vilid=0
    //否则key was detected    vilid=1
    always@(*)  
        valid=(out==4'd0 && code!=8'h45)?0:1;
endmodule
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值