21 lines
945 B
Plaintext
21 lines
945 B
Plaintext
###############################################################################
|
|
## Copyright (C) 2022-2023 Analog Devices, Inc. All rights reserved.
|
|
### SPDX short identifier: ADIBSD
|
|
###############################################################################
|
|
|
|
<: setFileUsedIn { out_of_context synthesis implementation } :>
|
|
<: ;#Component and file information :>
|
|
<: set ComponentName [getComponentNameString] :>
|
|
<: setOutputDirectory "./" :>
|
|
<: setFileName $ComponentName :>
|
|
<: setFileExtension "_ooc.xdc" :>
|
|
|
|
# This XDC is used only for OOC mode of synthesis, implementation.
|
|
# These are default values for timing driven synthesis during OOC flow.
|
|
# These values will be overwritten during implementation with information
|
|
# from top level.
|
|
|
|
create_clock -name s_axis_aclk -period 2.5 [get_ports s_axis_aclk]
|
|
create_clock -name m_axis_aclk -period 2.5 [get_ports m_axis_aclk]
|
|
create_clock -name m_axi_aclk -period 2.5 [get_ports m_axi_aclk]
|