diff options
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 " |
