我来我网
https://5come5.cn
 
您尚未 登录  注册 | 菠菜 | 软件站 | 音乐站 | 邮箱1 | 邮箱2 | 风格选择 | 更多 » 
 

本页主题: XIlinx,高手求命 显示签名 | 打印 | 加为IE收藏 | 收藏主题 | 上一主题 | 下一主题

autium



性别: 帅哥 状态: 该用户目前不在线
等级: 栋梁之材
发贴: 655
威望: 0
浮云: 1115
在线等级:
注册时间: 2006-10-16
最后登陆: 2009-02-24

5come5帮你背单词 [ dwarf /dwo:f/ n. 矮子,矮小的动物;a. 矮小的 ]


XIlinx,高手求命

//VHDL原程序,应该没有错误的
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;

-- Uncomment the following lines to use the declarations that are
-- provided for instantiating Xilinx primitive components.
--library UNISIM;
--use UNISIM.VComponents.all;

entity ha is
port(clk:in std_logic;
  dclk:out std_logic);
end ha;

architecture Behavioral of ha is

signal count: integer range 0 to 10;
signal clk10: std_logic;

begin

process(clk)
begin
if count=10 then
clk10<=not clk10;
count<=1;
else count<=count+1;
end if;
end process;

dclk<=clk10;

end Behavioral;



//测试文件,也因该是没问题的撒
-- VHDL Test Bench Created from source file ha.vhd -- 22:01:45 04/12/2007
--
-- Notes:
-- This testbench has been automatically generated using types std_logic and
-- std_logic_vector for the ports of the unit under test. Xilinx recommends
-- that these types always be used for the top-level I/O of a design in order
-- to guarantee that the testbench will bind correctly to the post-implementation
-- simulation model.
--
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
USE ieee.numeric_std.ALL;

ENTITY ha_test_vhd_tb IS
END ha_test_vhd_tb;

ARCHITECTURE behavior OF ha_test_vhd_tb IS

   COMPONENT ha
   PORT(
       clk : IN std_logic;      
       dclk : OUT std_logic
       );
   END COMPONENT;

   SIGNAL clk : std_logic;
   SIGNAL dclk : std_logic;

BEGIN

   uut: ha PORT MAP(
       clk => clk,
       dclk => dclk
   );


-- *** Test Bench - User Defined Section ***
  tb : PROCESS
  BEGIN
  clk<='1';wait for 15.625 ns;
  clk<='0';wait for 15.625 ns; -- will wait forever
  END PROCESS;
-- *** End Test Bench - User Defined Section ***
END;


好像两个文件都没问题,可是出来的图形错误,DCLK是一个无关态,不知道那里错拉,是不是软件的BUG,

今天在实验室得到了正确的波形图,可是在自己的机子上却出不了
请教高手,谢谢诶

顶端 Posted: 2007-04-12 22:19 | [楼 主]
qws3000



性别: 保密 状态: 该用户目前不在线
头衔: 奶茶王子
等级: 人见人爱
发贴: 2111
威望: 0
浮云: 1170
在线等级:
注册时间: 2005-03-15
最后登陆: 2007-06-18

5come5帮你背单词 [ ellipse /i'lips/ n. 椭圆,椭圆形 ]


貌似是个分频器..
顶端 Posted: 2007-04-12 22:32 | [1 楼]
我来我网·5come5 Forum » 电子设计·数学建模

Total 0.013238(s) query 7, Time now is:12-30 04:00, Gzip enabled
Powered by PHPWind v5.3, Localized by 5come5 Tech Team, 黔ICP备16009856号