aboutsummaryrefslogtreecommitdiff
path: root/nmigen_boards/versa_ecp5_5g.py
blob: 75512eb04f32760878df3c547f508abb1879da62 (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 ._blinky import build_and_program
    build_and_program(VersaECP55GPlatform, "clk100")