sdc 约束 用*匹配
时间:10-02
整理:3721RD
点击:
set_ouput_delay -clock sclock -max 2 [get_ports A]
set_ouput_delay -clock sclock_1 -max 2 [get_ports A]
set_ouput_delay -clock sclock_2 -max 2 [get_ports A]
set_ouput_delay -clock sclock_3 -max 2 [get_ports A]
set_ouput_delay -clock sclock_11 -max 2 [get_ports A]
把上面的几句改成
set_ouput_delay -clock sclock* -max 2 [get_ports A]
用*去匹配,
为什么第一种写法有约束到,第二种写法pt报unconstrain?
但是get_clocks sclock* 又可以报出所有匹配的时钟
set_ouput_delay -clock sclock_1 -max 2 [get_ports A]
set_ouput_delay -clock sclock_2 -max 2 [get_ports A]
set_ouput_delay -clock sclock_3 -max 2 [get_ports A]
set_ouput_delay -clock sclock_11 -max 2 [get_ports A]
把上面的几句改成
set_ouput_delay -clock sclock* -max 2 [get_ports A]
用*去匹配,
为什么第一种写法有约束到,第二种写法pt报unconstrain?
但是get_clocks sclock* 又可以报出所有匹配的时钟
