diff options
| author | Catherine <whitequark@whitequark.org> | 2023-02-03 06:15:24 +0000 |
|---|---|---|
| committer | Catherine <whitequark@whitequark.org> | 2023-02-03 06:15:24 +0000 |
| commit | e4fd6136652cd862bd0ac34aa8b9dbc5c6c5bef8 (patch) | |
| tree | c047b38e5fe1dfdb4324ad27890aab8533f72822 /amaranth_boards/microzed_z020.py | |
| parent | 3bd9f3f10b8b5df5d6554840379870447f0cd626 (diff) | |
Update references to deprecated platform names.
Diffstat (limited to 'amaranth_boards/microzed_z020.py')
| -rw-r--r-- | amaranth_boards/microzed_z020.py | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/amaranth_boards/microzed_z020.py b/amaranth_boards/microzed_z020.py index 87b763a..3f7badd 100644 --- a/amaranth_boards/microzed_z020.py +++ b/amaranth_boards/microzed_z020.py @@ -1,13 +1,15 @@ from amaranth.build import * -from amaranth.vendor.xilinx_7series import * +from amaranth.vendor.xilinx import * + __all__ = ["MicroZedZ020Platform"] -class MicroZedZ020Platform(Xilinx7SeriesPlatform): - device = "xc7z020" - package = "clg400" - speed = "1" - resources = [] + +class MicroZedZ020Platform(XilinxPlatform): + device = "xc7z020" + package = "clg400" + speed = "1" + resources = [] connectors = [ Connector("JX1", 0, "F9 J6 " |
