DELAY value timeunit; SOURCE {source_name_list}; SINK {sink_name_list}; [STOP {stop_name_list}]; [PASS {bypass_name_list}].
DELAY value
Specifies an integer.
timeunit
Allows {PS, NS, US}.
source_name_list
A list of signal sources. It can be one of the following: a macro output pin, macro name, or primary input.
sink_name_list
A list of signal destinations. It can be a name of a macro or a primary output.
stop_name_list
The list of pin names through which further propagation of signals will not be considered. This allows you to eliminate certain paths from consideration.
bypass_name_list
The list of latches which are allowed to be intermediate path points. By default, latches are considered to be sinks or path terminals.
INPAD/OUTPAD/GATED
Valid values for any of the lists, such as source_name_list or stop_name_list.
PAD >> internalMacro >> CLKINT
where CLKINT is the input pin of the global clock distribution network. The automatically generated path constraints will not incorporate the skew between the two clocks. In such cases, the path constraints should be expressed explicitly using the MAX/MIN_DELAYS section.
NOTE: The most stringent timing constraint dominates. Hence, all general constraints should be looser than the specific constraints. For example, in the following example, the 26.0ns constraint dominates the 42.0ns constraint:
DELAY 42.0 ns SOURCE INPAD SINK OUTPAD.
DELAY 26.0 ns SOURCE {$1I23:Q $1I24:Q} SINK {ack_0}.
DELAY 26.0 ns SOURCE INPAD SINK OUTPAD.
DELAY 42.0 ns SOURCE {$1I23:Q $1I24:Q} SINK {ack_0}.