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

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

手机号码,快捷登录

手机号码,快捷登录

找回密码

  登录   注册  

快捷导航
搜帖子
查看: 1778|回复: 0

[求助] 求大神帮忙看看程序问题出在哪?modelsim仿真后输出数据一直为红线U

[复制链接]
发表于 2015-5-21 15:59:17 | 显示全部楼层 |阅读模式

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

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

x
大神帮忙看看吧~感激不尽。以下为testbench程序:library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use ieee.std_logic_textio.all;
use ieee.numeric_std.all;
use std.textio.all;

entity tb_med is
end tb_med;

architecture beh_tb of tb_med is

file input_file: text open read_mode is "input4tb.dat";
file output_file: text open write_mode is "output_tb.dat";

  component med_filter is
  port (
        clk: in std_logic;
        reset: in std_logic;
        data_in: in std_logic_vector(7 downto 0);
        data_out: out std_logic_vector(7 downto 0)
       );
  end component med_filter;

  signal data_in: std_logic_vector(7 downto 0);
  signal data_out: std_logic_vector(7 downto 0);

signal clk: std_logic := '0' ;
  signal reset: std_logic := '1';
  --signal data_valid: std_logic := '0';

  begin
    duv: med_filter
    port map (data_in => data_in,
              clk     => clk,
              reset   => reset,
              data_out => data_out
              );

    reset_gen: process
    begin
        for n in 0 to 3 loop
           wait until falling_edge(clk);
        end loop;
        reset <= '0' ;
    end process reset_gen;

    clock: process
      constant half_clock_period: time := 10 ns;  -- for 100MHz
    begin
      clk <= '1';
      wait for half_clock_period;
      clk <= '0';
      wait for half_clock_period;   
    end process clock;

process

variable inline, outline : line;
variable input : std_logic_vector(7 downto 0);
variable output : std_logic_vector(7 downto 0);

begin
  while not endfile(input_file) loop

if (reset = '1') then

data_in <= (others => '0');

else

readline(input_file, inline);

read(inline, input);

data_in <= input;

--data_valid <= '1';

output := data_out;
      write(outline, output);
      writeline(output_file, outline);

end if;
  wait until clk = '1';
  end loop;
  --if rising_edge(clk) then

  --end if;

end process;

end beh_tb;

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

本版积分规则

关闭

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


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

GMT+8, 2024-11-13 04:11 , Processed in 0.015046 second(s), 8 queries , Gzip On, Redis On.

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