打印

modesim 连调的问题

[复制链接]
1439|0
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
纳米小芯|  楼主 | 2012-4-14 14:53 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
//counter.v
module counter(clk,rst,counter_out);
input clk;
input rst;
output [3:0] counter_out;
reg [3:0] counter_out;
initial begin counter_out=0; end
always @(posedge clk or negedge rst)
  if(!rst)
    counter_out <= 0;
  else
    counter_out <=counter_out+1'b1;
endmodule

我的这个代码,通过quartuse 与modesim 连调的时候,CLK 一直没有变化,后来我force clk 0 0,1 50 -r 100这样,才会有CLK,但是counter_out 一直不计数,后来,我加上了
initial begin counter_out=0; end
counter_out 才开始计数的,
这个是为什么呢??请教各位大虾了!!

相关帖子

发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

18

主题

36

帖子

0

粉丝