zturn_lite: fix typo
[nmigen-boards.git] / nmigen_boards / zturn_lite_z007s.py
1 from nmigen.build import *
2 from nmigen.vendor.xilinx_7series import *
3
4
5 __all__ = ["ZTurnLiteZ007SPlatform"]
6
7
8 class ZTurnLiteZ007SPlatform(Xilinx7SeriesPlatform):
9 device = "xc7z007s"
10 package = "clg400"
11 speed = "1"
12 resources = []
13 connectors = [
14 Connector("expansion", 0,
15 "- - "
16 "B19 E17 "
17 "A20 D18 "
18 "- - "
19 "E18 D19 "
20 "E19 D20 "
21 "G17 F16 "
22 "G18 F17 "
23 "- - "
24 "- - "
25 "J18 J20 "
26 "H18 H20 "
27 "C20 K17 "
28 "B20 K18 "
29 "- - "
30 "G19 K19 "
31 "G20 J19 "
32 "F19 H15 "
33 "F20 G15 "
34 "- - "
35 "L16 K14 "
36 "L17 J14 "
37 "L19 H16 "
38 "L20 H17 "
39 "- - "
40 "K16 L14 "
41 "J16 L15 "
42 "M17 M14 "
43 "M18 M15 "
44 "- - "
45 "N17 P15 "
46 "P18 P16 "
47 "M19 N15 "
48 "M20 N16 "
49 "- - "
50 "N18 - "
51 "P19 R16 "
52 "N20 R17 "
53 "P20 T20 "
54 "- U20 "
55 "- - "
56 "T16 V20 "
57 "U17 W20 "
58 "U18 T17 "
59 "U19 R18 "
60 "- - "
61 "W18 V17 "
62 "W19 V18 "
63 "U14 V16 "
64 "U15 W16 "
65 "- - "
66 "V15 Y18 "
67 "W15 Y19 "
68 "Y16 W14 "
69 "Y17 Y14 "
70 "- - "
71 "- - "
72 "- - "
73 "- - "
74 "- - "
75 ),
76 ]