2023-07-06 12:08:22 +00:00
|
|
|
###############################################################################
|
|
|
|
## Copyright (C) 2019-2023 Analog Devices, Inc. All rights reserved.
|
|
|
|
### SPDX short identifier: ADIBSD
|
|
|
|
###############################################################################
|
2019-04-08 14:44:53 +00:00
|
|
|
|
|
|
|
<: 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 dma_clk -period 8 [get_ports dma_clk]
|
|
|
|
create_clock -name dac_clk -period 3.2 [get_ports dac_clk]
|
|
|
|
|
|
|
|
################################################################################
|