集成电路技术分享

 找回密码
 我要注册

QQ登录

只需一步,快速开始

搜索
查看: 836|回复: 0

各位帮小弟看看问题出在哪

[复制链接]
z2500053109 发表于 2013-12-3 22:30:02 | 显示全部楼层 |阅读模式
entity crltime is
        port(clk :in std_logic;
                        s:in std_logic;
                        begn,cbegnut std_logic:='1');
end crltime;

architecture Behavioral of crltime is
        signal cnt:integer range 0 to 50000500;
--        signal statu: std_logic_vector(1 downto 0);
begin
        process(clk)
        begin
        if rising_edge(clk) then
                if s='0' then cbegn<='0';
                elsif cnt=50000499 then
                        begn<='0';cnt<=0;cbegn<='1';
                elsif cnt=49999999 then begn<='1';
                else
                        cnt<=cnt+1;
                end if;
        end if;
        end process;

end Behavioral;

综合后提示
Xst:2677 - Node <u1/cnt_25> of sequential type is unconnected in block <top>.
还有begn 和cbegn也是这个提示  没和顶层文件链接上   怎么改
您需要登录后才可以回帖 登录 | 我要注册

本版积分规则

关闭

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

QQ|小黑屋|手机版|Archiver|fpga论坛|fpga设计论坛 ( 京ICP备20003123号-1 )

GMT+8, 2025-5-8 04:56 , Processed in 0.060029 second(s), 21 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表