Create false path within verilog source code. No access to SDC constraints.
Hi there,
I'm looking to create a false path constraint without the use of SDC constraints, as I do not have access to the constraints file. I've been looking around and have found the CUT attribute, but it does not appear to affect the timing analyzer nor create assignments. Am I just using it wrong?
Below is the line in question. I intend to create a register that represents a de-facto constant for the duration of a run. It is only written to once during an "initialization" phase, and gets plenty of time to propagate to the entirity of the design (~1000 clock cycles before "run" phase begins). This value is very widely used, and making all paths starting from this register a false path would improve my FMax significantly.
(* altera_attribute = "-name CUT ON -to *" *) reg[127:0] topReg;
The equivalent SDC constraint I'd like to add but can't:
set_false_path -from [get_keepers ...|topReg]
Any ideas?