I have a 2048 bit register that has a range of signals that need to be part of a false path.
Instead of creating 100 lines like this:
set_false_path -from {ModA:ModA_inst|reg_src[144]} -to {ModB:ModB_inst|*}
set_false_path -from {ModA:ModA_inst|reg_src[145]} -to {ModB:ModB_inst|*}
...
set_false_path -from {ModA:ModA_inst|reg_src[243]} -to {ModB:ModB_inst|*}
set_false_path -from {ModA:ModA_inst|reg_src[244]} -to {ModB:ModB_inst|*}
Is there an SDC syntax to do something like this?
set_false_path -from {ModA:ModA_inst|reg_src[144..244]} -to {ModB:ModB_inst|*}
Thanks!
Instead of creating 100 lines like this:
set_false_path -from {ModA:ModA_inst|reg_src[144]} -to {ModB:ModB_inst|*}
set_false_path -from {ModA:ModA_inst|reg_src[145]} -to {ModB:ModB_inst|*}
...
set_false_path -from {ModA:ModA_inst|reg_src[243]} -to {ModB:ModB_inst|*}
set_false_path -from {ModA:ModA_inst|reg_src[244]} -to {ModB:ModB_inst|*}
Is there an SDC syntax to do something like this?
set_false_path -from {ModA:ModA_inst|reg_src[144..244]} -to {ModB:ModB_inst|*}
Thanks!