集成电路技术分享

 找回密码
 我要注册

QQ登录

只需一步,快速开始

搜索
查看: 892|回复: 0

ISE 中全局时钟缓冲问题

[复制链接]
zhiweiqiang33 发表于 2012-11-12 14:26:27 | 显示全部楼层 |阅读模式
module count4(out,reset,clk);
     output[1:0] out;
     input reset,clk;
     reg[1:0] out;

wire clkin;
      always @(posedge clkin)
         begin
             if (reset)
                 out<=0; //同步复位
             else
                 out<=out+1'b1; //计数
         end
mydcm mydcm(
.CLK_IN1(clk),
.CLK_OUT1(clkin),
.CLK_OUT2(),
.RESET(reset)
);

endmodule


很简单的一个计数器,现在用DCM的一个输出做计数时钟 ,一个做逻辑分析仪的采样时钟,为什么实现时会出现下面的错误
ERROR:NgdBuild:924 - input pad net 'clk' is driving non-buffer primitives:
ERROR:NgdBuild:924 - input pad net 'reset' is driving non-buffer primitives:
您需要登录后才可以回帖 登录 | 我要注册

本版积分规则

关闭

站长推荐上一条 /1 下一条

QQ|小黑屋|手机版|Archiver|fpga论坛|fpga设计论坛 ( 京ICP备20003123号-1 )

GMT+8, 2025-6-26 22:07 , Processed in 0.128287 second(s), 19 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表