这些小活动你都参加了吗?快来围观一下吧!>>
电子产品世界 » 论坛首页 » 嵌入式开发 » FPGA » 十万火急询问AHDL问题

共1条 1/1 1 跳转至

十万火急询问AHDL问题

菜鸟
2007-07-20 00:50:42     打赏

这个设计实现什么功能,明天要考试了,各位大哥帮帮我吧

SUBDESIGN debounce
(
clk :input;
key_pressed:input;
pulse:output;
)
variable
count_reg[7..0]:dff;
at_zero:node;
begin
count_reg[].clk=clk;
count_reg[].prn=key_pressed;
count_reg[].d=count_reg[].q-(0,!at_zero);

% emit single pulse when counter reach 1.%
pulse =count_reg[].q==h"01";

% don't let counter decrement below zero.%
at_zero=count_reg[].q==h"00";
end;




关键词: 十万火急     询问     问题    

共1条 1/1 1 跳转至

回复

匿名不能发帖!请先 [ 登陆 注册 ]