FPGA编写的减法计数器!

请高人帮忙编写下一个25的减法计数器,就是从24一直到0截止的,用FPGA编写!!!正确追加200VHDL的就可以了... 请高人帮忙编写下一个25的减法计数器,就是从24一直到0截止的,用FPGA编写!!!正确追加200
VHDL的就可以了
展开
 我来答
嘘嘘暖人心9763
2008-10-19 · TA获得超过289个赞
知道答主
回答量:180
采纳率:0%
帮助的人:0
展开全部
要VHDL的还是Verilog的?

entity lcnt is
port(clk:in std_logic;
q:out std_logic);
end lcnt;
architecture art of lcnt is
signal count:std_logic(4 downto 0);
begin
process(clk)
begin
if clk'event and clk='1' then
if count='0' then
count<=24;
else count<=count-1;
end if;
end if
end process;
end art;

望采纳
你说要追加200分的哦
fzfh
2008-10-20 · TA获得超过670个赞
知道小有建树答主
回答量:467
采纳率:0%
帮助的人:475万
展开全部
别逗了,最多只能追加50分。
entity lcnt is
port(clk:in std_logic;
q:out std_logic);
end lcnt;
architecture art of lcnt is
signal count:std_logic(4 downto 0);
begin
process(clk)
begin
if clk'event and clk='1' then
if count='0' then
count<=24;
else count<=count-1;
end if;
end if
end process;
end art;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式