aboutsummaryrefslogtreecommitdiff
path: root/amaranth_boards/versa_ecp5_5g.py
blob: 36e6997c55b40f734df1feb32338a658e892197a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from .versa_ecp5 import VersaECP5Platform


__all__ = ["VersaECP55GPlatform"]


class VersaECP55GPlatform(VersaECP5Platform):
    device      = "LFE5UM5G-45F"
    # Everything else is identical between 3G and 5G Versa boards.


if __name__ == "__main__":
    from .test.blinky import *
    VersaECP55GPlatform().build(Blinky(), do_program=True)