在线咨询
eetop公众号 创芯大讲堂 创芯人才网
切换到宽版

EETOP 创芯网论坛 (原名:电子顶级开发网)

手机号码,快捷登录

手机号码,快捷登录

找回密码

  登录   注册  

快捷导航
搜帖子
查看: 3561|回复: 1

[求助] 小白求救,关于Quartus的waring(10240)

[复制链接]
发表于 2014-7-23 20:42:17 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册

x
本人正在FPGA入门道路上裸奔的小白一枚,写了一段流水灯代码,四种流动模式,其中一种是来回流动的那种,但是总是出现这两行警告,接上LED灯之后输出还不对
Warning (10240): Verilog HDL Always Construct warning at runhorse_led_4_2.v(95): inferring latch(es) for variable "loop_bit_A", which holds its previous value in one or more paths through the always construct
Warning (10240): Verilog HDL Always Construct warning at runhorse_led_4_2.v(95): inferring latch(es) for variable "counter_A", which holds its previous value in one or more paths through the always construct

下面是出问题的那段代码,求大大们指教啊,我已经快要被逼疯了
        always @ (posedge clk_led_in or negedge rst)
                begin
                case (SW_AB_led)
                        model0:
                                begin
                                decoder_2_4 (counter_A, led_data_r);
                                if (!rst)
                                        begin
                                        loop_bit_A = 1'b0;
                                        counter_A = 2'b0;
                                        end
                                else if (loop_bit_A)
                                                begin
                                                counter_A = counter_A + 1'b1;
                                                if (counter_A==2'b11)
                                                        loop_bit_A = 1'b0;
                                                end
                                        else
                                                begin
                                                counter_A = counter_A - 1'b1;
                                                if (counter_A==2'b0)
                                                        loop_bit_A = 1'b0;
                                                end
                                end
我在外面定义了一个2-4译码器的任务,就是“decoder_2_4 (counter_A, led_data_r);”那行,我的想法是只要counter_A在2’b0到2‘b11之间来回跑就行了,但是~~~~~~~
发表于 2014-7-24 11:06:19 | 显示全部楼层
同时小白,这个警告大概是说 :会引入锁存器,来保持先前的值;比如你的不完整的 if语句,就会引入锁存器。。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

站长推荐 上一条 /2 下一条


小黑屋| 手机版| 关于我们| 联系我们| 在线咨询| 隐私声明| EETOP 创芯网
( 京ICP备:10050787号 京公网安备:11010502037710 )

GMT+8, 2024-11-25 01:22 , Processed in 0.022659 second(s), 9 queries , Gzip On, Redis On.

eetop公众号 创芯大讲堂 创芯人才网
快速回复 返回顶部 返回列表