完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
扫一扫,分享给好友
各位朋友,大家好!
我刚学习FPGA,选择的是VHDL语言,试着编写了一个二分频和四分频的程序,二分频成功了,但四分频却有问题,代码如下: library ieee; use ieee.std_logic_1164.all; entity divclk is port ( -- Input ports inclk : in std_logic; outclk : out std_logic ); end divclk; architecture one of divclk is signal tmp : std_logic; signal count : integer; begin process(inclk) begin if(inclk'event and inclk = '1') then count <= count + 1; if(count = 2) then tmp <= not tmp; count <= 0; end if; end if; outclk <= tmp; end process; end one; 输出时钟outclk总是保持低电平,看了半天没有找到错误,还请各位帮忙指教一下!拜托了。 |
|
相关推荐
5个回答
|
|
library ieee;
use ieee.std_logic_1164.all; USE IEEE.STD_LOGIC_ARITH.ALL; USE IEEE.STD_LOGIC_UNSIGNED.ALL; entity divclk is port ( -- Input ports inclk : in std_logic; outclk : out std_logic ); end divclk; architecture one of divclk is signal tmp : std_logic; signal count : std_logic_vector(1 downto 0); begin process(inclk) begin if(inclk'event and inclk = '1') then if(count = "01") then count <= (others=>'0'); tmp <= not tmp; else count <= count + 1; end if; end if; end process; outclk <= tmp; end one; |
|
|
|
|
|
|
|
|
|
|
|
你正在撰写答案
如果你是对答案或其他答案精选点评或询问,请使用“评论”功能。
2018 浏览 1 评论
助力AIoT应用:在米尔FPGA开发板上实现Tiny YOLO V4
1138 浏览 0 评论
3136 浏览 1 评论
2788 浏览 0 评论
矩阵4x4个按键,如何把识别结果按编号01-16(十进制)显示在两个七段数码管上?
3081 浏览 0 评论
2248 浏览 58 评论
6108 浏览 113 评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2025-1-14 23:10 , Processed in 0.572185 second(s), Total 78, Slave 62 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (威廉希尔官方网站 图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号