2939|1

6892

帖子

0

TA的资源

五彩晶圆(高级)

楼主
 

给程序挑错 [复制链接]

library IEEE ;
use IEEE.std_logic_1164.all ;
use IEEE.std_logic_unsigned.all ;
use IEEE.numeric_std.all ;

entity key1 is
port ( Clk_I   : in std_logic ;
        Rst_I   : in std_logic ;
        key_I : in std_logic ;
        key_O : out std_logic );
end entity ;
architecture rt1 of key1 is
   type state_type is (s0, s1, s2, s3, s4, s5);
   signal state     : state_type ;
   signal count     : integer range 0 to 80000 ;
   signal reg       : std_logic ;
   signal key_confirm : std_logic ;
begin
    reg <= key_I ;
  process (Clk_I, Rst_I)
    begin   
     if Rst_I = '0' then
              state <= s0 ;
      elsif Clk_I'event and Clk_I = '1' then
         
          case state is
               when s0 => if reg = '1' then
                               state <= s0;
                          else state <= s1;
                          end if ;
               when s1 => if count = 80000 then
                             count <= 0 ;
                             state <= s2 ;
                          else count <= count + 1 ;
                               state <= s1 ;
                          end if ;
               when s2 => if reg = '1' then
                               state <= s0 ;
                          else state <= s3;
                          end if ;
               when s3 => if reg = '1' then
                               state <= s0 ;
                          else state <= s4 ;
                          end if ;
               when s4 => if reg = '1' then
                               state <= s0 ;
                          else state <= s5 ;
                          end if ;
               when s5 => if reg ='0' then
                               state <= s0 ;
                          else state <= s5 ;
                          end if ;
               when others => state <= s0 ;
           end case ;
       end if ;
   end process ;
   process (Clk_I)
     begin
       if Clk_I'event and Clk_I = '1' then
         case state is
             when s5 => key_confirm <= '1' ;
             when others => key_confirm <= '0' ;
         end case ;
        end if ;
     end process ;
   key_O <= key_confirm ;
end rt1;
错误:    key_O : out std_logic ); 不应该有分号
此帖出自FPGA/CPLD论坛

最新回复

use IEEE.numeric_std.all 这个标准库没有用过,不知道啥作用? VHDL 常用的标准库是: use IEEE. std_logic_arith.all  不知道使用这个会不会改进错误  详情 回复 发表于 2010-9-23 15:23
点赞 关注
个人签名一个为理想不懈前进的人,一个永不言败人!
http://shop57496282.taobao.com/
欢迎光临网上店铺!
 

回复
举报

569

帖子

0

TA的资源

一粒金砂(高级)

沙发
 

use IEEE.numeric_std.all

这个标准库没有用过,不知道啥作用?

VHDL 常用的标准库是:

use IEEE. std_logic_arith.all  不知道使用这个会不会改进错误

此帖出自FPGA/CPLD论坛
 
 

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

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

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

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

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

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

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

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