芯路恒电子技术论坛

 找回密码
 立即注册
热搜: 合集
查看: 8171|回复: 0

Error (10149):identifier "cnt3" is already declared in the present

[复制链接]
  • TA的每日心情
    慵懒
    2021-2-24 10:16
  • 428

    主题

    811

    帖子

    1万

    积分

    管理员

    Rank: 9Rank: 9Rank: 9

    积分
    16109
    QQ
    发表于 2021-8-13 16:49:10 | 显示全部楼层 |阅读模式
    Error (10149): Verilog HDL Declaration error at counter3.v(27): identifier "cnt3" is already declared in the present scope


    报错内容如上所述,原因在于某个信号在多个位置定义,如下面的代码,第10行定义了cnt3,在17行又定义了一次,就会出现这种报错。排查这种报错的方法很简单,找到其中一个位置,双击使其高亮,然后再在上下文中找其他地方定义的位置。

    1. module counter3(
    2.         Clk50M,
    3.         Rst_n,
    4.         led
    5. );

    6.         input Clk50M;        //系统时钟,50M
    7.         input Rst_n;        //全局复位,低电平复位
    8.         output reg led;
    9.         wire [24:0]cnt3;
    10.         
    11.         counter2 counter2(
    12.                 .Clk50M(Clk50M),
    13.                 .Rst_n(Rst_n),
    14.                 .cnt2(cnt3)
    15.         );
    16.         wire [24:0]cnt3;
    17.     //led输出控制进程
    18.         always@(posedge Clk50M or negedge Rst_n)
    19.         if(Rst_n == 1'b0)
    20.                 led <= 1'b1;
    21.         else if(cnt3 == 25'd24_999)  //仅为测试
    22.                 led <= ~led;
    23.         else
    24.                 led <= led;

    25. endmodule
    复制代码

    回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    QQ|小黑屋|Archiver|芯路恒电子技术论坛 |鄂ICP备2021003648号

    GMT+8, 2024-11-24 05:14 , Processed in 0.106618 second(s), 32 queries .

    Powered by Discuz! X3.4

    © 2001-2017 Comsenz Inc. Template By 【未来科技】【 www.wekei.cn 】

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