菜鸟就是菜鸟,连ISE测试文件都没搞好

2020-02-24 20:39发布

本帖最后由 crjab 于 2013-7-19 16:33 编辑

library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;

---- Uncomment the following library declaration if instantiating
---- any Xilinx primitives in this code.
--library UNISIM;
--use UNISIM.VComponents.all;

entity erfen is
port
(
clock:in std_logic;
clkout:out std_logic
);
end erfen;

architecture Behavioral of erfen is
signal clk:std_logic:='0';
begin
process(clock)
begin
if rising_edge(clock) then
clk<=not clk;
end if;
end process;
clkout<=clk;
end Behavioral;
以上是最简单的一个分频电路程序,其测试文件如下:

LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
USE ieee.std_logic_unsigned.all;
USE ieee.numeric_std.ALL;

ENTITY erfentest IS
END erfentest;

ARCHITECTURE behavior OF erfentest IS

    -- Component Declaration for the Unit Under Test (UUT)

    COMPONENT erfen
    PORT(
         clock : IN  std_logic;
         clkout : OUT  std_logic
        );
    END COMPONENT;
   

   --Inputs
   signal clock : std_logic;

         --Outputs
   signal clkout : std_logic;

   -- Clock period definitions
   constant clock_period : time := 1us;
   constant clkout_period : time := 1us;

BEGIN

        -- Instantiate the Unit Under Test (UUT)
   uut: erfen PORT MAP (
          clock => clock,
          clkout => clkout
        );
   -- Clock process definitions
   clock_process :process
   begin
                clock <= '0';
                wait for clock_period/2;
                clock <= '1';
                wait for clock_period/2;
   end process;

   clkout_process :process
   begin
                clkout <= '0';
                wait for clkout_period/2;
                clkout <= '1';
                wait for clkout_period/2;
   end process;
END;

得出的波形却是这样:(附件里)
请高手看看怎么回事,,,刚接触这块,连一个小小的仿真都没搞定,打击很大啊
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
19条回答
ococ
1楼-- · 2020-02-26 08:45
crjab 发表于 2013-7-20 16:03
论坛上有这么资深的高手肯为菜鸟讲解,实在不多见了  十分感动
可是我已经综合过了呀 是不是这样?

你应该先选择上面的erfentest文件,然后再在下面双击仿真吧。
FangTT
2楼-- · 2020-02-26 11:24
ococ 发表于 2013-7-20 21:07
你应该先选择上面的erfentest文件,然后再在下面双击仿真吧。

学习啦
crjab
3楼-- · 2020-02-26 13:05
ococ 发表于 2013-7-20 21:07
你应该先选择上面的erfentest文件,然后再在下面双击仿真吧。

我就是这么做的啊,可是输出还是显示“U”,郁闷死了,,,请问高手有相关的电子文档吗,发给我一份学习一下  本人刚学这个不到两个礼拜 还没仿真出过波形  着实悲催啊  本人邮箱crjab@163.com  谢谢你的指教
crjab
4楼-- · 2020-02-26 14:29
GoldSunMonkey 发表于 2013-7-20 16:41
是呀,没问题

那怎么就出不来不来呢???头疼啊,可以把你的邮箱私信给我 我把文件发给你帮我看看吗????希望斑竹大大能抽点时间帮我这个菜鸟中的菜鸟
ococ
5楼-- · 2020-02-26 15:16
 精彩回答 2  元偷偷看……
GoldSunMonkey
6楼-- · 2020-02-26 20:09
crjab 发表于 2013-7-21 08:35
我就是这么做的啊,可是输出还是显示“U”,郁闷死了,,,请问高手有相关的电子文档吗,发给我一份学习 ...

你没连好啊

一周热门 更多>