8025|5

6

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

Modelsim 仿真后总是no extended dataflow license exists@【FPGA/CPLD】 [复制链接]

本帖最后由 feikufeirong 于 2015-2-12 16:34 编辑

code反复检查了应该没有问题 compile之后 同时simulate counter.vhd 和 counter.tb.vhd后不弹出波形页面,这时候再打开simulate 就只剩counter.vhd了
看了一些帖子,说出现no extended dataflow license exists 是signal matching有问题,但这么简单的一个小程序不应该啊
此帖出自FPGA/CPLD论坛

最新回复

要先看文件编译能否通过  详情 回复 发表于 2015-2-13 08:38
点赞 关注
 

回复
举报

6

帖子

0

TA的资源

一粒金砂(初级)

沙发
 
这是tb的
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
USE ieee.std_logic_unsigned.all;


ENTITY count_0_to_5_tb IS
END count_0_to_5_tb;

ARCHITECTURE behavior OF count_0_to_5_tb IS
   
    COMPONENT count_0_to_5  
    PORT(clk : IN  std_logic;
         count : buffer  std_logic_vector(2 downto 0);
         reset_n : IN  std_logic;
                        Q: out std_logic
        );
    END COMPONENT;

   signal clk : std_logic := '0';
   signal reset_n : std_logic := '1';

   signal count : std_logic_vector(2 downto 0);
        signal Q: std_logic;
   
   constant clk_period : time := 1 ms;
BEGIN
   
   uut: count_0_to_5 PORT MAP (
          clk => clk,
          count => count,
          reset_n => reset_n,
                         Q => Q
        );      

   
   clk_process :process
   begin
        clk <= '0';
        wait for clk_period/2;
        clk <= '1';
        wait for clk_period/2;
   end process;
  
  stim_proc: process
   begin         
        wait for 1 ms;
        reset_n <='0';
        wait for 1 ms;
        reset_n <='1';
        
  end process;

END;
此帖出自FPGA/CPLD论坛
 
 

回复

6

帖子

0

TA的资源

一粒金砂(初级)

板凳
 
这是0-5 counter,Q用来表示有没有数到5
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;

entity count_0_to_5 is
port (clk : in std_logic;
      count : buffer std_logic_vector(2 downto 0);
      reset_n :in std_logic;
                Q: out std_logic
      );
end count_0_to_5;

architecture Behavior of count_0_to_5 is


begin


process(clk,reset_n)
begin
  
  if(rising_edge(clk)) then
    if (count="101")then
            count<=(others=>'0');

         else count<=count + '1';

         end if;
  end if;
  
  if (count="101") then
     Q<='1';
  else Q<='0';
  end if;
  
  if(reset_n='1') then
     count<=(others=>'0');
  end if;
end process;






end Behavior;
此帖出自FPGA/CPLD论坛
 
 
 

回复

793

帖子

8

TA的资源

纯净的硅(中级)

4
 
此帖出自FPGA/CPLD论坛
 
 
 

回复

6

帖子

0

TA的资源

一粒金砂(初级)

5
 
晤。。。真的没人吗
此帖出自FPGA/CPLD论坛
 
 
 

回复

372

帖子

0

TA的资源

一粒金砂(高级)

6
 
要先看文件编译能否通过
此帖出自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
快速回复 返回顶部 返回列表