首页 > 其他 > 详细

SDC文件模版

时间:2015-03-07 22:25:29      阅读:298      评论:0      收藏:0      [点我收藏+]
# 1. Define clock
create_clock -name "clk_in" -period 20ns [get_ports {clk_in}]

# 2. tco constraints
# 2.1. Here, 2ns is tsu of external component
set_output_delay -clock "clk_in" -max 2ns [get_ports{pout}] 
# 2.2. Here, 3ns is th of external component
#        ! Use negative value of th !
set_output_delay -clock "clk_in" -min -3ns [get_ports{pout}]
# 2.3. Here, 3ns is tco of external component
set_input_delay -max 3ns -clock "clk_in" [get_ports{pin}]
# 2.4. Here, 2ns is minimal tco of external component
set_input_delay -min 2ns -clock "clk_in" [get_ports{pin}]

 

SDC文件模版

原文:http://www.cnblogs.com/byeyear/p/4320958.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!