3328|5

11

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

新手求助。。达人速度进来赐教啦。。。跪拜。 [复制链接]

library ieee;
use ieee.std_logic_arith.all;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
---------------------------------
entity signal_gen is
port(clk:in std_logic;
     outp:out std_logic);
end signal_gen;
---------------------------------
architecture bev of signal_gen is
type state is(one,two,three);
signal pre_state1,pre_state2,next_state1,next_state2:state;
signal outp1,outp2:std_logic ;
begin
---------------------------------
process(clk)
begin
if(clk'event and clk='1')then
  pre_state1<=next_state1;
  end if;
end process;
---------------------------------
process(clk)
begin
if(clk'event and clk='0')then
  pre_state2<=next_state2;
end if;
end process;
---------------------------------
process(pre_state1)
begin
case pre_state1 is
  when one=>
  outp1<='0';
  next_state1<=two;
  when two=>
  outp1<='1';
  next_state1<=three;
  when three=>
  outp1<='1';
  next_state1<=one;
end case;
end process;
-----------------------------------
process(pre_state2)
begin
case pre_state2 is
   when one=>
   outp2<='1';
   next_state2<=two;
   when two=>
   outp2<='0';
   next_state2<=three;
   when three=>
   outp<='1';
   next_state2<=one;
end case;
end process;
-------------------------------------
outp<=outp1 and outp2;
end bev;
一个信号发生器,一楼为错误代码。。达人帮忙啊,不知道怎么搞。。哎。。
此帖出自FPGA/CPLD论坛

最新回复

呵呵,写的多了眼就花了,难免滴  详情 回复 发表于 2010-9-7 08:36
点赞 关注
 

回复
举报

11

帖子

0

TA的资源

一粒金砂(初级)

沙发
 
Error (10028): Can't resolve multiple constant drivers for net "outp" at signal_gen.vhd(61)
Error (10029): Constant driver at signal_gen.vhd(46)
Error: Can't elaborate top-level user hierarchy
Error: Quartus II Analysis & Synthesis was unsuccessful. 3 errors, 2 warnings
此帖出自FPGA/CPLD论坛
 
 

回复

2641

帖子

0

TA的资源

五彩晶圆(中级)

板凳
 
FPGA不是很懂,没时间学
此帖出自FPGA/CPLD论坛
 
 
 

回复

3138

帖子

0

TA的资源

裸片初长成(初级)

4
 
 process(pre_state2) 中的最后一个when,应该是给outp2赋值,而不是outp。
此帖出自FPGA/CPLD论坛

赞赏

1

查看全部赞赏

 
 
 

回复

11

帖子

0

TA的资源

一粒金砂(初级)

5
 
楼上我爱你,,我太爱你了。。来么么。。。我看了好一会都没看出来。。。是少了个2。。。我真2。。。
此帖出自FPGA/CPLD论坛
 
 
 

回复

978

帖子

0

TA的资源

一粒金砂(高级)

6
 

回复 5楼 wangpiaoke 的帖子

呵呵,写的多了眼就花了,难免滴
此帖出自FPGA/CPLD论坛
 
 
 

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

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

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

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