2021-10-08 11:48:00 -06:00
|
|
|
import warnings
|
|
|
|
|
2020-12-16 08:35:57 -07:00
|
|
|
from .xilinx import XilinxPlatform
|
2019-10-10 10:35:48 -06:00
|
|
|
|
2021-10-08 11:48:00 -06:00
|
|
|
|
2019-10-10 10:35:48 -06:00
|
|
|
__all__ = ["XilinxUltraScalePlatform"]
|
|
|
|
|
2021-10-08 11:48:00 -06:00
|
|
|
|
2020-12-16 08:35:57 -07:00
|
|
|
XilinxUltraScalePlatform = XilinxPlatform
|
2021-10-08 11:48:00 -06:00
|
|
|
|
|
|
|
|
|
|
|
# TODO(nmigen-0.4): remove
|
|
|
|
warnings.warn("instead of nmigen.vendor.xilinx_ultrascale.XilinxUltraScalePlatform, "
|
|
|
|
"use nmigen.vendor.xilinx.XilinxPlatform",
|
|
|
|
DeprecationWarning, stacklevel=2)
|