完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
扫一扫,分享给好友
本帖最后由 krian 于 2014-11-4 15:50 编辑
6分频器 源文件: entity xt6_4 is port(clk: in std_logic; out2:out std_logic); end xt6_4; architecture Behavioral of xt6_4 is begin process(clk) variable count2:integer range 0 to 7; variable outp:std_logic; begin if(clk'event and clk = '1')then count2 := count2+1; if(count2 = 3)then outp := NOT outp; count2 := 0; end if; end if; out2 <= outp; end process; end Behavioral; 仿真文件: LIBRARY ieee; USE ieee.std_logic_1164.ALL; ENTITY test_xt6_4 IS END test_xt6_4; ARCHITECTURE behavior OF test_xt6_4 IS -- Component Declaration for the Unit Under Test (UUT) COMPONENT xt6_4 PORT( clk : IN std_logic; out2 : OUT std_logic ); END COMPONENT; --Inputs signal clk : std_logic := '0'; --Outputs signal out2 : std_logic; -- Clock period definitions constant clk_period : time := 10 ns; BEGIN -- Instantiate the Unit Under Test (UUT) uut: xt6_4 PORT MAP ( clk => clk, out2 => out2 ); -- Clock process definitions clk_process :process begin clk <= '0'; wait for clk_period/2; clk <= '1'; wait for clk_period/2; end process; END; 没有输出。。。 感觉没有什么错误呀!下面附图,错误结果。。。 |
|
相关推荐
1个回答
|
|
|
|
|
|
你正在撰写答案
如果你是对答案或其他答案精选点评或询问,请使用“评论”功能。
1802 浏览 1 评论
1540 浏览 0 评论
矩阵4x4个按键,如何把识别结果按编号01-16(十进制)显示在两个七段数码管上?
1757 浏览 0 评论
959 浏览 0 评论
2544 浏览 0 评论
1577 浏览 39 评论
5808 浏览 113 评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-3 14:53 , Processed in 0.591888 second(s), Total 77, Slave 56 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号