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

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

手机号码,快捷登录

手机号码,快捷登录

找回密码

  登录   注册  

快捷导航
搜帖子
查看: 2234|回复: 4

[求助] 4位计数器找错,谢谢!

[复制链接]
发表于 2012-2-6 10:57:40 | 显示全部楼层 |阅读模式

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

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

x
本帖最后由 richarqi 于 2012-2-6 11:02 编辑

本菜鸟刚开始学习VHDL,下面这段程序是按照书上输入到电脑中的,用quartusII 11.0进行仿真,出现了4个错误,应该是少了个标点之类的错误,但我对着书几遍了都没发现哪有错,希望有高手指点,谢谢!
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity cnt4 is
port
( rst:in std_logic;
d:in std_logic_vector(3 downto 0);
load:in std_logic;
clk,ce:in std_logic;
q: out std_logic_vector(3 downto 0);
cout: out std_logic
);
end entity cnt4;
architecture syn of cnt4 is
signal count:std_logic_vector(3 downto 0);
begin
cntproc:process(clk,rst) begin
if rst= '1' then
  count<=(others=>'0');
elseif rising_edge(clk)  then
  if ce= '1' then
   if load= '1' then
   count<=d;  else
   count<=count+1;
   end if;
  end if;
end if;
end process;
coutproc:process(clk,rst) begin
if rst='1' then
cout<='0';
elseif rising_edge(clk) then
if count="1111" then
cout<='1';  else
cout<='0';
end if;
end if;
end process;
q<=count;
end syn;
  

错误如下:
Error (10500): VHDL syntax error at cnt4.vhd(20) near text "rising_edge";  expecting "(", or "'", or "."
Error (10500): VHDL syntax error at cnt4.vhd(20) near text "then";  expecting "(", or "'", or "."
Error (10500): VHDL syntax error at cnt4.vhd(32) near text "rising_edge";  expecting "(", or "'", or "."
Error (10500): VHDL syntax error at cnt4.vhd(32) near text "then";  expecting "(", or "'", or "."
Error: Quartus II 32-bit Create Symbol File was unsuccessful. 4 errors, 0 warnings
Error: Peak virtual memory: 283 megabytes
Error: Processing ended: Mon Feb 06 10:47:57 2012
Error: Elapsed time: 00:00:02
Error: Total CPU time (on all processors): 00:00:02

对着这段程序一个早上,都找不着错在哪里,还希望有高手帮忙一下!
发表于 2012-2-6 14:35:17 | 显示全部楼层
现在用vhdl的人越来越才了,还是换成verilog吧
发表于 2012-2-6 15:27:49 | 显示全部楼层
为什么呢,没有人用vhdl了吗
发表于 2012-2-6 15:55:00 | 显示全部楼层
好象是ELSEIF错了吧。 可以写成ELSIF或者ELSE IF试试看。
 楼主| 发表于 2012-2-6 16:12:32 | 显示全部楼层
回复 4# wkx820313


    谢谢!果然改成elsif就没有错误了!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

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

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

GMT+8, 2024-11-17 05:25 , Processed in 0.020760 second(s), 9 queries , Gzip On, Redis On.

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