HDLBits 系列(17) 计数器的级联实现1000分频的分频器

举报
李锐博恩 发表于 2021/07/15 04:18:34 2021/07/15
【摘要】 目录 原题复现 审题 我的设计 原题复现 原题 From a 1000 Hz clock, derive a 1 Hz signal, called OneHertz, that could be used for the digital wall clock. Build the frequency divider using modulo-10 (BCD) ...

目录

原题复现

审题

我的设计


原题复现

原题

From a 1000 Hz clock, derive a 1 Hz signal, called OneHertz, that could be used for the digital wall clock. Build the frequency divider using modulo-10 (BCD) counters and as few other gates as possible. Also output the enable signals from each of the BCD counters you use (c_enable[0] for the fastest counter, c_enable[2] for the slowest).

The following BCD counter is provided for you. Enable must be high for the counter to run. Reset is synchronous and set high to force the counter to zero. All counters in your circuit must directly use the same 1000 Hz signal.


  
  1. module bcdcount (
  2. input clk,
  3. input reset,
  4. input enable,
  5. output reg [3:0] Q
  6. );

Module Declaration


  
  1. module top_module (
  2. input clk,
  3. input reset,
  4. output OneHertz,
  5. output [2:0] c_enable
  6. );

审题

如何设计这样一个电路呢?

通过例化一个10进制bcd码计数器,来实现1000分频的分频器。

也就是说时钟是1Khz的时钟,如何通过计数得到一个1Hz的信号,持续一个时钟就行。

那就计数到999给一个输出作为1Hz信号输出。

如何实现计数到999呢?

由于给的是一个模10计数器,所以先例化一个个位计数器,技术到9,给十位计数器一个使能,让其计数,同理,十位计数器计数到9给百位计数器一个使能,就可以得到这样的一个计数器,于是我们的设计可以是这样的:

我的设计


  
  1. module top_module (
  2. input clk,
  3. input reset,
  4. output OneHertz,
  5. output [2:0] c_enable
  6. ); //
  7. wire [3:0] q0, q1, q2;
  8. assign c_enable = {q1 == 4'd9 && q0 == 4'd9, q0 == 4'd9, 1'b1};
  9. assign OneHertz = {q2 == 4'd9 && q1 == 4'd9 && q0 == 4'd9};
  10. bcdcount counter0 (clk, reset, c_enable[0], q0);
  11. bcdcount counter1 (clk, reset, c_enable[1], q1);
  12. bcdcount counter2 (clk, reset, c_enable[2], q2);
  13. endmodule

参考链接:HDLBits:在线学习 Verilog (二十一 · Problem 100 - 104)

 

 

文章来源: reborn.blog.csdn.net,作者:李锐博恩,版权归原作者所有,如需转载,请联系作者。

原文链接:reborn.blog.csdn.net/article/details/103230795

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。