6193|4

2113

帖子

0

TA的资源

裸片初长成(初级)

楼主
 

大家帮忙看看 [复制链接]

我做了一个抢答器程序,但是仿真没波形
能给点建议吗
QQ:362372925
谢了
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity qiang is
port(reset,clk: in  std_logic;
             k: in  std_logic;
             i: in  std_logic_vector(7 downto 0);
             q: in  std_logic;
             o: out std_logic_vector(6 downto 0);
             x: out std_logic;
             w: out std_logic;
             e: out std_logic;
             r: out std_logic);
end qiang;
architecture a of qiang is
 type state is (st0,st1,st2,st3);
 signal current_state: state;
 signal next_state: state;
 signal t1,t2:std_logic;
 signal m1:std_logic_vector(11 downto 0);
 signal m2:std_logic_vector(11 downto 0);
begin
p1:PROCESS(clk)
begin
if clk'event and clk='1' then
current_state<=next_state;
end if;
end process p1;
p2:process(clk)
 begin
  if clk'event and clk='1' then
   if  current_state=st1 then
    if m1="101110110111" then
     m1<="000000000000";
    elsif i="00000001" then
     m1<="000000000000";
    elsif i="00000010" then
     m1<="000000000000";
    elsif i="00000100" then
     m1<="000000000000";
    elsif i="00001000" then
     m1<="000000000000";
    elsif i="00010000" then
     m1<="000000000000";
    elsif i="00100000" then
     m1<="000000000000";
    elsif i="01000000" then
     m1<="000000000000";
    elsif i="10000000" then
     m1<="000000000000";    
    else m1<=m1+1;
    end if;
   end if;
  end if;
t1<=m1(11) and m1(9) and m1(8) and m1(7) and m1(5) and m1(4) and m1(2) and m1(1) and m1(0);
end process p2;
p3:process(clk)
 begin
 if  clk'event and clk='1' then
  if  current_state=st3 then
   if m2="101110110111" then
    m2<="000000000000";
   else m2<=m2+1;
   end if;
  end if;
end if;
t2<=m1(11) and m1(9) and m1(8) and m1(7) and m1(5) and m1(4) and m1(2) and m1(1) and m1(0);
end process p3;
p4: process(current_state)
begin
case current_state is
when st0=>
if reset='1' then
next_state<=st0;
elsif k='1' then
next_state<=st1;
else next_state<=st0;
end if;
when st1=>
    if reset='1' then
    next_state<=st0;
    elsif t1='1' then
    if i="00000000" then
    next_state<=st1;
    elsif i="00000001" then
    next_state<=st2;
    elsif i="00000010" then
    next_state<=st2;
    elsif i="00000100" then
    next_state<=st2;
    elsif i="00001000" then
    next_state<=st2;
    elsif i="00010000" then
    next_state<=st2;
    elsif i="00100000" then
    next_state<=st2;
    elsif i="01000000" then
    next_state<=st2;
    elsif i="10000000" then
    next_state<=st2;
    end if;
   end if;
when st2=>
  if reset='1' then
  current_state<=st0;
  elsif q='1' then
  current_state<=st3;
  else current_state<=st2;  
  end if;
when st3=>
if reset='1' then 
next_state<=st0;
elsif t2='1' then
next_state<=st0;
else next_state<=st3;
end if;
end case;
end process p4;
p5: process (clk)
begin
case current_state is
when st0=>
e<='1';o<="1111111";w<='0';x<='0';r<='0';
when st1=>
if i="00000000" then
e<='0';o<="1111111";w<='0';x<='1';r<='0';
elsif i="00000001" then
e<='0';o<="1111001";w<='0';x<='0';r<='0';
elsif i="00000010" then
e<='0';o<="0100100";w<='0';x<='0';r<='0';
elsif i="00000100" then
e<='0';o<="0110000";w<='0';x<='0';r<='0';
elsif i="00001000" then
o<="0011001";e<='0';w<='0';x<='0';r<='0';
elsif i="00010000" then
o<="0010010";e<='0';w<='0';x<='0';r<='0';
elsif i="00100000" then
e<='0';o<="0000010";w<='0';x<='0';r<='0';
elsif i="01000000" then
o<="1111000";e<='0';w<='0';x<='0';r<='0';
elsif i="10000000" then
o<="0000000";e<='0';w<='0';x<='0';r<='0';
end if;
when st2=>
e<='0';o<="1111111";w<='1';x<='0';r<='0';
when st3=>
e<='0';o<="1111111";w<='0';x<='0';r<='1';
end case;
end a;

5592.txt

3.65 KB, 下载次数: 3

此帖出自FPGA/CPLD论坛

最新回复

呵呵 这个需要自己摸索了  详情 回复 发表于 2007-5-28 08:52
点赞 关注
 

回复
举报

1759

帖子

0

TA的资源

裸片初长成(高级)

沙发
 

Re: 大家帮忙看看

你可以使用altera软件仿镇侃侃 看问题到底出在什么地放
此帖出自FPGA/CPLD论坛
个人签名南京璞晓电子   www.cpx0.com需要
msn:njlianjian@hotmail.com
 
 

回复

1284

帖子

0

TA的资源

五彩晶圆(中级)

板凳
 

Re: 大家帮忙看看

用QuartusII仿真波形要设置的。。。你设置好了没?没设置要再问,我给你截图设置过程吧。。。
此帖出自FPGA/CPLD论坛
个人签名呼呼...在校应届大四学生,代做电子类毕业设计(测量类、仪器类、控制类、无线通信类、电子产品类、界面设计类、纯论文类等等,一一俱全)。涉及各种单片机软硬件设计、电路模拟分析、FPGA、CPLD、ARM7/ARM9、LINUX、VB/VC++/QT界面等等。包过。。。欢迎咨询。Tel:13957160506。QQ:273437087
 
 
 

回复

2113

帖子

0

TA的资源

裸片初长成(初级)

4
 

Re: 大家帮忙看看

我是刚学的, QuartusII用的不多 那就请您在论坛上指导怎样设置吧
此帖出自FPGA/CPLD论坛
 
 
 

回复

1759

帖子

0

TA的资源

裸片初长成(高级)

5
 

Re: 大家帮忙看看

呵呵 这个需要自己摸索了
此帖出自FPGA/CPLD论坛
个人签名南京璞晓电子   www.cpx0.com需要
msn:njlianjian@hotmail.com
 
 
 

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

随便看看
查找数据手册?

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