Commit fa4b1c95 authored by Tristan Gingold's avatar Tristan Gingold

Merge branch 'xdc-missing-filter-gc-sync-word' into 'master'

fix: improve filtering to include prefixed sync_word and multi-aasd

See merge request !46
parents c953e2bd c665b3f3
......@@ -204,7 +204,7 @@ proc generate_gc_sync_register_constraints { f_out } {
}
proc generate_gc_sync_word_constraints { f_out } {
set the_cells [ get_cells -hier -filter { REF_NAME=~gc_sync_word_* } ]
set the_cells [ get_cells -hier -filter { REF_NAME==gc_sync_word_rd || ORIG_REF_NAME==gc_sync_word_rd || REF_NAME==gc_sync_word_wr || ORIG_REF_NAME==gc_sync_word_wr } ]
set count 0
puts $f_out "# gc_sync_word"
......@@ -242,7 +242,7 @@ proc generate_gc_sync_word_constraints { f_out } {
}
proc generate_gc_reset_multi_aasd_constraints { f_out } {
set the_cells [ get_cells -hier -filter { REF_NAME=~gc_reset_multi_aasd* } ]
set the_cells [ get_cells -hier -filter { REF_NAME==gc_reset_multi_aasd || ORIG_REF_NAME==gc_reset_multi_aasd } ]
set count 0
puts $f_out "# gc_reset_multi_aasd"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment