顺序脉冲 发生器
Posted baihuashan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了顺序脉冲 发生器相关的知识,希望对你有一定的参考价值。
按时间周期性产生脉冲:
module maichong ( output q1,q2,q3,
input clk, input d, input rst ); reg q; always @ (posedge clk or negedge clk) begin if(!rst) q<=0; else d[2:1]<=d[1:0];
d[0]<=d[2];
q1<=d[2];
q2<=d[1];
q3<=d[0]; end
以上是关于顺序脉冲 发生器的主要内容,如果未能解决你的问题,请参考以下文章