原创 Report registers without clock in DC

2011-10-25 20:10 1247 3 3 分类: 工程师职场
Question:

How can I get a report for registers that do not have a clock in Design Compiler?

Answer:

You can use the following script in Design Compiler to report registers without clocks:

dc_shell> set design_all_clocks [all_clocks]
{clk1 clk2 clk3 clk4}

dc_shell> foreach_in_collection clk $design_all_clocks {
set no_clock_reg [remove_from_collection [all_registers] [all_registers -clock $clk]]
}

dc_shell> query_objects $no_clock_reg
{U1}

In PrimeTime, you can use the -verbose option with the check_timing command to list 
all registers that do not have a clock.
PARTNER CONTENT

文章评论0条评论)

登录后参与讨论
EE直播间
更多
我要评论
0
3
关闭 站长推荐上一条 /3 下一条