Forum Discussion
Altera_Forum
Honored Contributor
8 years agoUse something like:
set data_inputs [all_inputs] set data_inputs [remove_from_collection [all_inputs] clk] That will create a list without clock. If you want to remove something else, do another line: set data_inputs [remove_from_collection $data_inputs reset] Repeat as necessary. If you want to visually see what's in it, then do: query_collection -all -report $data_inputs Once correct, use in constraint: set_input_delay -clock clk -max 0.0 $data_inputs Then repeat for outputs