We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
AMDPlatform
XilinxPlatform
1 parent 994fa81 commit 14929b9Copy full SHA for 14929b9
amaranth/vendor/__init__.py
@@ -5,6 +5,7 @@
5
# Keep this list sorted alphabetically.
6
__all__ = [
7
"AlteraPlatform",
8
+ "AMDPlatform",
9
"GowinPlatform",
10
"IntelPlatform",
11
"LatticeECP5Platform",
@@ -39,7 +40,7 @@ def __getattr__(name):
39
40
if name in ("SiliconBluePlatform", "LatticeICE40Platform"):
41
from ._siliconblue import SiliconBluePlatform
42
return SiliconBluePlatform
- if name == "XilinxPlatform":
43
+ if name in ("XilinxPlatform", "AMDPlatform"):
44
from ._xilinx import XilinxPlatform
45
return XilinxPlatform
46
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
0 commit comments