Altera_Forum
Honored Contributor
15 years agofor loop in sdc file
is it possible to use for loops in the sdc file to help add constraints for multiple interfaces of the same type.
For example, I have 4 ata intefaces and so it would be easier if I could have a for loop setting the contraints the same for each. I have tried the code below which doesn't work, I get the error "Warning: Ignored filter at squid.sdc(115): ATA$x_DD [*] could not be matched with a port" and "Warning: Ignored filter at squid.sdc(115): ATA$x_IORDY could not be matched with a clock".for {set x 0} {$x<4} {incr x} {
set_input_delay -max 2.3 }] -clock
}Thanks in advance, Richard