在线咨询
eetop公众号 创芯大讲堂 创芯人才网
切换到宽版

EETOP 创芯网论坛 (原名:电子顶级开发网)

手机号码,快捷登录

手机号码,快捷登录

找回密码

  登录   注册  

快捷导航
搜帖子
查看: 2609|回复: 1

[求助] DC综合的时候

[复制链接]
发表于 2021-12-5 16:53:13 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册

x
Warning: In design 'top_interface5', the same net is connected to more than one pin on submodule 'mode5'. (LINT-33)
   Net 'w_reg_04[3]' is connected to pins 'error', 'reg_04[3]'.
Warning: In design 'osc_delay5', cell 'C83' does not drive any nets. (LINT-1)
Warning: In design 'error5', cell 'C364' does not drive any nets. (LINT-1)
Warning: In design 'error5', cell 'C375' does not drive any nets. (LINT-1)

Warning: In design 'ee_control5', cell 'C1595' does not drive any nets. (LINT-1)
Warning: In design 'ee_control5', cell 'C1651' does not drive any nets. (LINT-1)
Warning: In design 'abz5', cell 'B_127' does not drive any nets. (LINT-1)
Warning: In design 'abz5', cell 'B_128' does not drive any nets. (LINT-1)
Warning: In design 'abz5', cell 'C8047' does not drive any nets. (LINT-1)
Warning: In design 'abz5', cell 'C8059' does not drive any nets. (LINT-1)
Warning: In design 'abz5', cell 'C8089' does not drive any nets. (LINT-1)
Warning: In design 'abz5', cell 'C8098' does not drive any nets. (LINT-1)
Warning: In design 'abz5', cell 'B_133' does not drive any nets. (LINT-1)
Warning: In design 'abz5', cell 'B_134' does not drive any nets. (LINT-1)
#-----------------------------------------------------------------
# Save Pre-compiler Design
#-----------------------------------------------------------------
echo "+++++++++ Saving Pre-compiler Designn ..."
+++++++++ Saving Pre-compiler Designn ...
write -f ddc -hier -output ../out/${TOP_LEVEL}_pre.ddc
Writing ddc file '../out/top_interface5_pre.ddc'.
1
write -f verilog -hier -output ../out/${TOP_LEVEL}_pre.v
Writing verilog file '/home/leo/projects/TMR249_digit/control/dc/dc_all_bc_wc/read/out/top_interface5_pre.v'.
Warning: Module osc_delay5 contains unmapped components.  The output netlist might not be read back into the system. (VO-12)
Warning: Module error5 contains unmapped components.  The output netlist might not be read back into the system. (VO-12)
Warning: Module releas5 contains unmapped components.  The output netlist might not be read back into the system. (VO-12)
Warning: Module spi_control5 contains unmapped components.  The output netlist might not be read back into the system. (VO-12)
Warning: Module rst5 contains unmapped components.  The output netlist might not be read back into the system. (VO-12)
Warning: Verilog 'assign' or 'tran' statements are written out. (VO-4)
Warning: Module ee_control5 contains unmapped components.  The output netlist might not be read back into the system. (VO-12)
Warning: Module regist5 contains unmapped components.  The output netlist might not be read back into the system. (VO-12)
Warning: Verilog writer has added 90 nets to module abz5 using SYNOPSYS_UNCONNECTED_ as prefix.  Please use the change_names command to make the correct changes before invoking the verilog writer.  (VO-11)
Warning: Module abz5 contains unmapped components.  The output netlist might not be read back into the system. (VO-12)


请问遇到这种warning该如何debug,我只在一个简单模块的map 网表中查了一下,但是没理解悬空的原因
RTL如下,
module osc_delay5 (
                  input        sys_clk            ,
                  input        rst_n              ,
                  input        sclk               ,

                  output       osc                ,
                  output       osc_n              ,
                  output       nsclk
                  );

    reg   [9:0]    cnt_delay;
    reg            clk_n;
    wire           buf_osc;

always @  (posedge sys_clk or negedge rst_n) begin  // div  2
    if(rst_n==1'b0)
       clk_n <= 1'b0;
    else
       clk_n <= ~clk_n;
end

always @  (posedge  clk_n  or negedge  rst_n) begin  ///    osc delay
   if(rst_n==1'b0)
      cnt_delay <= 10'd0;
   else if (cnt_delay[9]==1'b0)
      cnt_delay <= cnt_delay+1'b1;
end

buffd20   buf5 (.Y(osc), .A(buf_osc));
assign  buf_osc = cnt_delay[9] ==1'b1 ? clk_n : 1'b1;
assign  osc_n= ~buf_osc;
assign  nsclk = ~sclk;
endmodule


发表于 2022-6-16 01:41:34 | 显示全部楼层
请问博主这个问题解决了吗?我也遇到这个问题,不知道怎么解,求指导,谢谢。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

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

×

小黑屋| 关于我们| 联系我们| 在线咨询| 隐私声明| EETOP 创芯网
( 京ICP备:10050787号 京公网安备:11010502037710 )

GMT+8, 2024-3-29 20:34 , Processed in 0.016120 second(s), 6 queries , Gzip On, Redis On.

eetop公众号 创芯大讲堂 创芯人才网
快速回复 返回顶部 返回列表