# 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}]

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-30
  • 2022-12-23
  • 2021-10-13
  • 2021-06-10
  • 2022-03-09
  • 2022-12-23
猜你喜欢
  • 2022-02-19
  • 2021-10-06
  • 2022-12-23
  • 2021-06-06
  • 2021-07-05
  • 2021-09-21
  • 2022-12-23
相关资源
相似解决方案