Maio
New Contributor
3 years agoAttribute in RTL for Timing Constraints
Hello,
For AMD, I used the following methodology to create timing constraints for registers:
RTL Code:
(* some_attribute = "true" *) reg [31:0] config_register;
Constraints:
[get_cells -hier -filter {some_attribute =~ true}]
The above get_cells command would return the cells from the RTL code I added the attribute to, and then I could add any command on those cells from the constraints files in the build.
Is there an equivalent to this for Quartus? I have attempted to run a get_cells command that gets cells based on an attribute but I was unable to solve this.
Thanks