2634|7

60

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

下面的VHDL程序为什么不能实现移位? [复制链接]

该程序是实现012345-123450-234501-345012-450123-501234-012345的循环表示

library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_unsigned.all;
use ieee.std_logic_arith.all;

entity disp_inturn is
    port(
        clk: in std_logic;
        cats: out std_logic_vector(0 to 5);
        a2g: out std_logic_vector(0 to 6)
        );
    end disp_inturn;
     
architecture v of disp_inturn is
        signal flag,flag1 : integer range 0 to 6;
        signal num : integer range 0 to 1200;
                signal flag2:std_logic;
    begin
        process (clk)
        begin

            if (clk'event and clk='1') then  
                case flag1 is
                    when 0 => a2g<="1111110";
                    when 1 => a2g<="0110000";
                    when 2 => a2g<="1101101";
                    when 3 => a2g<="1111001";
                    when 4 => a2g<="0110011";
                    when 5 => a2g<="1011011";
                    when others => null;
                end case;                 
                 
      
                flag2<='0';

                if(num = 12) then
                                num <= 0; flag2 <= '1';
                                else  
                num <= num + 1;
                                end if;
                               
                                if (flag1 = 5 and flag2 = '0')
                                then flag1 <= 0;
                                else
                                flag1 <= flag1 + 1;
                                end if;
              
                               
                               
                                if flag2 = '1' then
                                        if flag1 = 5 then flag1 <= 0;
                                        elsif flag1 = 6 then flag1 <= 1;
                                        else flag1 <= flag + 1; end if;
                                end if;
                               
                             
            end if;
        end process;
         
        process (clk)
            begin if (clk'event and clk='1') then
                case flag is
                    when 0 => cats <= "011111";
                    when 1 => cats <= "101111";
                    when 2 => cats <= "110111";
                    when 3 => cats <= "111011";
                    when 4 => cats <= "111101";
                    when 5 => cats <= "111110";
                    when others => null;
                end case ;
                                if (flag =5) then
                    flag <=0;
                else
                    flag <= flag+1;
                end if;
               
end if;
            end process;            
                 
    end;

最新回复

把case语句放到进程的最后面试试。  详情 回复 发表于 2010-6-10 17:32
点赞 关注

回复
举报

78

帖子

0

TA的资源

一粒金砂(初级)

沙发
 
正在学习中
 
 

回复

63

帖子

0

TA的资源

一粒金砂(初级)

板凳
 
感觉应该可以.....
 
 
 

回复

68

帖子

0

TA的资源

一粒金砂(初级)

4
 
if (flag1 = 5 and flag2 = '0')  
then flag1 <= 0;
else  
flag1 <= flag1 + 1;
end if;
------------这部分可能有点问题,也许应该用"OR",不是"AND"
 
 
 

回复

80

帖子

0

TA的资源

一粒金砂(初级)

5
 
有可能是你的CLK频率太高,你看不清它的变化......(应当只有在10HZ以下才可能看得清)
 
 
 

回复

58

帖子

0

TA的资源

一粒金砂(初级)

6
 
不太清楚啊
 
 
 

回复

70

帖子

0

TA的资源

一粒金砂(初级)

7
 
你的case中的变量没有放到进程敏感值表中。
 
 
 

回复

62

帖子

0

TA的资源

一粒金砂(初级)

8
 
把case语句放到进程的最后面试试。
 
 
 

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

随便看看
查找数据手册?

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
快速回复 返回顶部 返回列表