3169|6

59

帖子

8

TA的资源

一粒金砂(中级)

楼主
 

刚学VHDL,有问题向大家请教!麻烦各位帮忙看看。 [复制链接]

请问各位,为什么我的key0_state产生下降沿的时候,dout1,dout2,dout3都可以赋值为0,可是为什么别的key_state产生下降沿,dout1,dout2,dout3却不能赋值为1,2,3,4.。。。。?请问是什么原因呢?

 

process(clk_100,key0_state,key1_state,key2_state,key3_state,
     key4_state,key5_state,key6_state,key7_state,
     key8_state,key9_state,key10_state,key11_state,
     key12_state,key13_state,key14_state,key15_state)
 variable num : integer range 0 to 3;
 begin
  if clk'event and clk='1' then
   if key0_state='1' and key0_state'event then
    if num=0 then dout1<=0; num:=num+1;
     elsif num=1 then dout2<=0; num:=num+1;
      elsif num=2 then dout3<=0; num:=num+1;
    end if;
   elsif key1_state='1' and key1_state'event then
    if num=0 then dout1<=1; num:=num+1;
     elsif num=1 then dout2<=1; num:=num+1;
      elsif num=2 then dout3<=1; num:=num+1;
    end if;
   elsif key2_state='1' and key2_state'event then
    if num=0 then dout1<=2; num:=num+1;
     elsif num=1 then dout2<=2; num:=num+1;
      elsif num=2 then dout3<=2; num:=num+1;
    end if;
   elsif key3_state='1' and key3_state'event then
    if num=0 then dout1<=3; num:=num+1;
     elsif num=1 then dout2<=3; num:=num+1;
      elsif num=2 then dout3<=3; num:=num+1;
    end if;
   elsif key4_state='1' and key4_state'event then
    if num=0 then dout1<=4; num:=num+1;
     elsif num=1 then dout2<=4; num:=num+1;
      elsif num=2 then dout3<=4; num:=num+1;
    end if;
   elsif key5_state='1' and key5_state'event then
    if num=0 then dout1<=5; num:=num+1;
     elsif num=1 then dout2<=5; num:=num+1;
      elsif num=2 then dout3<=5; num:=num+1;
    end if;
   elsif key6_state='1' and key6_state'event then
    if num=0 then dout1<=6; num:=num+1;
     elsif num=1 then dout2<=6; num:=num+1;
      elsif num=2 then dout3<=6; num:=num+1;
    end if;
   elsif key7_state='1' and key7_state'event then
    if num=0 then dout1<=7; num:=num+1;
     elsif num=1 then dout2<=7; num:=num+1;
      elsif num=2 then dout3<=7; num:=num+1;
    end if;
   elsif key8_state='1' and key8_state'event then
    if num=0 then dout1<=8; num:=num+1;
     elsif num=1 then dout2<=8; num:=num+1;
      elsif num=2 then dout3<=8; num:=num+1;
    end if;
   elsif key9_state='1' and key9_state'event then
    if num=0 then dout1<=9; num:=num+1;
     elsif num=1 then dout2<=9; num:=num+1;
      elsif num=2 then dout3<=9; num:=num+1;
    end if;
    
   elsif key10_state='1' and key10_state'event then
     confirm<='1';
     if num=1 then
      dout_send<=dout1;
      elsif num=2 then
       dout_send<=dout1*10+dout2;
       elsif num=3 then
        dout_send<=dout1*100+dout2*10+dout3;
     end if;
     num:=0;
   end if;
  end if;
 
 end process;

最新回复

不知道你问题搞定没有!  详情 回复 发表于 2012-6-27 19:32
点赞 关注
 

回复
举报

6892

帖子

0

TA的资源

五彩晶圆(高级)

沙发
 

  if clk'event and clk='1' then
   if key0_state='1' and key0_state'event then

上面这种写法本身就是错误的,没有按照硬件的需求来写

个人签名一个为理想不懈前进的人,一个永不言败人!
http://shop57496282.taobao.com/
欢迎光临网上店铺!
 
 

回复

375

帖子

0

TA的资源

一粒金砂(中级)

板凳
 
太乱了,看都不想看,长传个VHDL附件嘛!
 
 
 

回复

6

帖子

0

TA的资源

一粒金砂(中级)

4
 
为什么不用个case 语句呢,代码整的有点乱。
 
 
 

回复

6892

帖子

0

TA的资源

五彩晶圆(高级)

5
 

问题解决了吗?

 

刚学VHDL,应该先搞简单一点。比如哦搞一个D触发器,分频电路等等!

给自己建立信心,然后一点一点的深入!

个人签名一个为理想不懈前进的人,一个永不言败人!
http://shop57496282.taobao.com/
欢迎光临网上店铺!
 
 
 

回复

256

帖子

0

TA的资源

一粒金砂(中级)

6
 
代码有点乱,if语句嵌套太多了
 
 
 

回复

6892

帖子

0

TA的资源

五彩晶圆(高级)

7
 

不知道你问题搞定没有!

个人签名一个为理想不懈前进的人,一个永不言败人!
http://shop57496282.taobao.com/
欢迎光临网上店铺!
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/10 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表