VHDL 语言中 将CLK 频率 改变 语句怎么写process(Clk) begin if(Clk'event and

问题描述:

VHDL 语言中 将CLK 频率 改变 语句怎么写process(Clk) begin if(Clk'event and Clk='1') then current_stat
1个回答 分类:英语 2014-11-30

问题解答:

我来补答
CLK频率改变可以用计数器实现,如下current_sta就是五位的计数器,计数到“11111”就是进行64分频,clk_s就是你需要的频率,其值=CLK/64
process(Clk)
begin if(Clk'event and Clk='1') then
if current_sta="11111" then
clk_s
 
 
展开全文阅读
剩余:2000
上一页:hfftbjhg