-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathxc7k160t.kicad_sch
1105 lines (1093 loc) · 46.8 KB
/
xc7k160t.kicad_sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20211123) (generator eeschema)
(uuid 000b7732-0bc7-4129-b7fe-6efcda9141f0)
(paper "A2")
(lib_symbols
(symbol "easyeda2kicad:MT47H64M8SH" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 43.18 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MT47H64M8SH" (id 1) (at 0 -40.64 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "easyeda2kicad:FBGA-60_L10.0-W8.0-P0.80-TL_MICRON_MT47H64M8SH" (id 2) (at 0 -43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC Part" "C1353826" (id 5) (at 0 -45.72 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MT47H64M8SH_0_1"
(rectangle (start -15.24 40.64) (end 12.7 -38.1)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin unspecified line (at -20.32 38.1 0) (length 5.08)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "A1" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 35.56 0) (length 5.08)
(name "~{NF,RDQS}/NU" (effects (font (size 1.27 1.27))))
(number "A2" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 33.02 0) (length 5.08)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "A3" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 30.48 0) (length 5.08)
(name "VSSQ" (effects (font (size 1.27 1.27))))
(number "A7" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 27.94 0) (length 5.08)
(name "~{DQS}/NU" (effects (font (size 1.27 1.27))))
(number "A8" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 25.4 0) (length 5.08)
(name "VDDQ" (effects (font (size 1.27 1.27))))
(number "A9" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 22.86 0) (length 5.08)
(name "DQ6" (effects (font (size 1.27 1.27))))
(number "B1" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 20.32 0) (length 5.08)
(name "VSSQ" (effects (font (size 1.27 1.27))))
(number "B2" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 17.78 0) (length 5.08)
(name "DM" (effects (font (size 1.27 1.27))))
(number "B3" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 15.24 0) (length 5.08)
(name "DQS" (effects (font (size 1.27 1.27))))
(number "B7" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 12.7 0) (length 5.08)
(name "VSSQ" (effects (font (size 1.27 1.27))))
(number "B8" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 10.16 0) (length 5.08)
(name "DQ7" (effects (font (size 1.27 1.27))))
(number "B9" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 7.62 0) (length 5.08)
(name "VDDQ" (effects (font (size 1.27 1.27))))
(number "C1" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 5.08 0) (length 5.08)
(name "DQ1" (effects (font (size 1.27 1.27))))
(number "C2" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 2.54 0) (length 5.08)
(name "VDDQ" (effects (font (size 1.27 1.27))))
(number "C3" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 0 0) (length 5.08)
(name "VDDQ" (effects (font (size 1.27 1.27))))
(number "C7" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 -2.54 0) (length 5.08)
(name "DQ0" (effects (font (size 1.27 1.27))))
(number "C8" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 -5.08 0) (length 5.08)
(name "VDDQ" (effects (font (size 1.27 1.27))))
(number "C9" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 -7.62 0) (length 5.08)
(name "DQ4" (effects (font (size 1.27 1.27))))
(number "D1" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 -10.16 0) (length 5.08)
(name "VSSQ" (effects (font (size 1.27 1.27))))
(number "D2" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 -12.7 0) (length 5.08)
(name "DQ3" (effects (font (size 1.27 1.27))))
(number "D3" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 -15.24 0) (length 5.08)
(name "DQ2" (effects (font (size 1.27 1.27))))
(number "D7" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 -17.78 0) (length 5.08)
(name "VSSQ" (effects (font (size 1.27 1.27))))
(number "D8" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 -20.32 0) (length 5.08)
(name "DQ5" (effects (font (size 1.27 1.27))))
(number "D9" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 -22.86 0) (length 5.08)
(name "VDDL" (effects (font (size 1.27 1.27))))
(number "E1" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 -25.4 0) (length 5.08)
(name "VREF" (effects (font (size 1.27 1.27))))
(number "E2" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 -27.94 0) (length 5.08)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "E3" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 -30.48 0) (length 5.08)
(name "VSSDL" (effects (font (size 1.27 1.27))))
(number "E7" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 -33.02 0) (length 5.08)
(name "CK" (effects (font (size 1.27 1.27))))
(number "E8" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -20.32 -35.56 0) (length 5.08)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "E9" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 38.1 180) (length 5.08)
(name "CKE" (effects (font (size 1.27 1.27))))
(number "F2" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 35.56 180) (length 5.08)
(name "~{WE}" (effects (font (size 1.27 1.27))))
(number "F3" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 33.02 180) (length 5.08)
(name "~{RAS}" (effects (font (size 1.27 1.27))))
(number "F7" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 30.48 180) (length 5.08)
(name "~{CK}" (effects (font (size 1.27 1.27))))
(number "F8" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 27.94 180) (length 5.08)
(name "ODT" (effects (font (size 1.27 1.27))))
(number "F9" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 25.4 180) (length 5.08)
(name "RFU" (effects (font (size 1.27 1.27))))
(number "G1" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 22.86 180) (length 5.08)
(name "BA0" (effects (font (size 1.27 1.27))))
(number "G2" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 20.32 180) (length 5.08)
(name "BA1" (effects (font (size 1.27 1.27))))
(number "G3" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 17.78 180) (length 5.08)
(name "~{CAS}" (effects (font (size 1.27 1.27))))
(number "G7" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 15.24 180) (length 5.08)
(name "~{CS}" (effects (font (size 1.27 1.27))))
(number "G8" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 12.7 180) (length 5.08)
(name "A10" (effects (font (size 1.27 1.27))))
(number "H2" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 10.16 180) (length 5.08)
(name "A1" (effects (font (size 1.27 1.27))))
(number "H3" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 7.62 180) (length 5.08)
(name "A2" (effects (font (size 1.27 1.27))))
(number "H7" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 5.08 180) (length 5.08)
(name "A0" (effects (font (size 1.27 1.27))))
(number "H8" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 2.54 180) (length 5.08)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "H9" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 0 180) (length 5.08)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "J1" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 -2.54 180) (length 5.08)
(name "A3" (effects (font (size 1.27 1.27))))
(number "J2" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 -5.08 180) (length 5.08)
(name "A5" (effects (font (size 1.27 1.27))))
(number "J3" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 -7.62 180) (length 5.08)
(name "A6" (effects (font (size 1.27 1.27))))
(number "J7" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 -10.16 180) (length 5.08)
(name "A4" (effects (font (size 1.27 1.27))))
(number "J8" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 -12.7 180) (length 5.08)
(name "A7" (effects (font (size 1.27 1.27))))
(number "K2" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 -15.24 180) (length 5.08)
(name "A9" (effects (font (size 1.27 1.27))))
(number "K3" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 -17.78 180) (length 5.08)
(name "A11" (effects (font (size 1.27 1.27))))
(number "K7" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 -20.32 180) (length 5.08)
(name "A8" (effects (font (size 1.27 1.27))))
(number "K8" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 -22.86 180) (length 5.08)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "K9" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 -25.4 180) (length 5.08)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "L1" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 -27.94 180) (length 5.08)
(name "A12" (effects (font (size 1.27 1.27))))
(number "L2" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 -30.48 180) (length 5.08)
(name "RFU" (effects (font (size 1.27 1.27))))
(number "L3" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 -33.02 180) (length 5.08)
(name "RFU" (effects (font (size 1.27 1.27))))
(number "L7" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 17.78 -35.56 180) (length 5.08)
(name "A13" (effects (font (size 1.27 1.27))))
(number "L8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+1V8" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+1V8" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+1V8\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+1V8_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+1V8_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+1V8" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 386.08 322.58) (diameter 0) (color 0 0 0 0)
(uuid 0b9f0953-dc14-407b-940e-8c41f1477f40)
)
(junction (at 391.16 355.6) (diameter 0) (color 0 0 0 0)
(uuid 1380979d-a6d7-48c8-848e-efa0eb791c8d)
)
(junction (at 386.08 383.54) (diameter 0) (color 0 0 0 0)
(uuid 248bf602-44d3-4fa9-a624-7bfac979c8ca)
)
(junction (at 391.16 317.5) (diameter 0) (color 0 0 0 0)
(uuid 364a4412-8073-4b7a-9a11-d81b5a26a491)
)
(junction (at 434.34 353.06) (diameter 0) (color 0 0 0 0)
(uuid 444f206f-3667-41e5-9204-b8b01be99c39)
)
(junction (at 386.08 373.38) (diameter 0) (color 0 0 0 0)
(uuid 65adc69b-dc0b-419a-8c85-b8170378de76)
)
(junction (at 391.16 330.2) (diameter 0) (color 0 0 0 0)
(uuid 67852099-e1fd-4f13-94d1-b4c6271f3c07)
)
(junction (at 386.08 342.9) (diameter 0) (color 0 0 0 0)
(uuid 6cd0daca-95f6-4091-8081-ab42ca04ce74)
)
(junction (at 439.42 355.6) (diameter 0) (color 0 0 0 0)
(uuid 79f96013-f837-4364-ad4e-5654421c71dd)
)
(junction (at 391.16 353.06) (diameter 0) (color 0 0 0 0)
(uuid 7a2f7b6a-e9d6-406a-a61e-e09c4ff569e1)
)
(junction (at 391.16 360.68) (diameter 0) (color 0 0 0 0)
(uuid 7e22628f-ec5f-4553-8d4e-2300a0cdaf94)
)
(junction (at 386.08 365.76) (diameter 0) (color 0 0 0 0)
(uuid 8fb16faf-29a7-4d52-94ce-44f84db6b075)
)
(junction (at 386.08 335.28) (diameter 0) (color 0 0 0 0)
(uuid ac767c4d-8c77-4762-b2e2-ad42361deeed)
)
(junction (at 386.08 325.12) (diameter 0) (color 0 0 0 0)
(uuid aff5cb77-277e-43d1-8f37-af47335aaaca)
)
(junction (at 391.16 378.46) (diameter 0) (color 0 0 0 0)
(uuid dc007b75-baaa-42c4-b085-945855b0da82)
)
(junction (at 391.16 347.98) (diameter 0) (color 0 0 0 0)
(uuid f2393626-5003-4f7c-8d17-0b3ede583c1a)
)
(junction (at 439.42 340.36) (diameter 0) (color 0 0 0 0)
(uuid fc053e30-f998-49c3-aa8d-400fed832de2)
)
(no_connect (at 393.7 320.04) (uuid 20e38f10-2863-4f9b-b312-a180aecc9a01))
(no_connect (at 431.8 388.62) (uuid 450c32ed-83ad-4cf8-a71c-c46238c13369))
(no_connect (at 431.8 386.08) (uuid 51e5cc62-e482-477e-9180-713dbfd5f112))
(no_connect (at 431.8 330.2) (uuid 7fd2153f-beb2-45cb-9afa-251ea0885951))
(wire (pts (xy 383.54 375.92) (xy 393.7 375.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 00a321a0-15ff-4039-b002-01b8caaad856)
)
(wire (pts (xy 393.7 353.06) (xy 391.16 353.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0385af81-40c7-4f3d-b425-42f6aaa1de00)
)
(wire (pts (xy 434.34 353.06) (xy 434.34 381))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0466b12a-39de-4428-a2a6-fe12ff460cb5)
)
(wire (pts (xy 441.96 327.66) (xy 431.8 327.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 050fb758-8948-4027-8388-f5bdfd24929d)
)
(wire (pts (xy 383.54 327.66) (xy 393.7 327.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e373c0b-5695-429a-83df-a6910d603a9a)
)
(wire (pts (xy 386.08 325.12) (xy 386.08 322.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 124f1ba6-b24c-46eb-85a2-14ed795f3090)
)
(wire (pts (xy 383.54 368.3) (xy 393.7 368.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 136db126-6df0-44cf-83a2-50de5d1905a2)
)
(wire (pts (xy 441.96 347.98) (xy 431.8 347.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1518c0d3-c4d2-4703-8bcb-f2053ea43454)
)
(wire (pts (xy 431.8 340.36) (xy 439.42 340.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 189f3bf3-5fbf-437f-b3e1-9ce0486f7388)
)
(wire (pts (xy 441.96 350.52) (xy 431.8 350.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 262baa63-1944-448c-91d1-866d9484dd62)
)
(wire (pts (xy 386.08 386.08) (xy 386.08 383.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 270ff5eb-d4ee-450e-94de-0ede00966d4f)
)
(wire (pts (xy 383.54 345.44) (xy 393.7 345.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 283933cd-5e1a-4845-a382-30e7cbf85f0b)
)
(wire (pts (xy 393.7 373.38) (xy 386.08 373.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29e97de8-c52c-4377-a968-718783d6ddd2)
)
(wire (pts (xy 386.08 373.38) (xy 386.08 365.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2c463695-6621-4cfc-b866-00933299cbbe)
)
(wire (pts (xy 393.7 383.54) (xy 386.08 383.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f209181-a708-4d5e-8e01-a8d876936af8)
)
(wire (pts (xy 441.96 391.16) (xy 431.8 391.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30f72707-8d9b-4c42-a2a2-a17287854aad)
)
(wire (pts (xy 441.96 342.9) (xy 431.8 342.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3280198c-2ffd-468a-bc21-ed1a7fccac4b)
)
(wire (pts (xy 393.7 391.16) (xy 391.16 391.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3374154f-2f31-43bf-8ff7-ac18f5823b8d)
)
(wire (pts (xy 383.54 332.74) (xy 393.7 332.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 33e1d641-2ec0-4476-b466-d879315c1637)
)
(wire (pts (xy 393.7 317.5) (xy 391.16 317.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34781ab0-1131-476a-8f04-d0f59e39f446)
)
(wire (pts (xy 391.16 317.5) (xy 391.16 314.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34cfb3b4-5c12-496e-b4e3-6ebb74055ba3)
)
(wire (pts (xy 431.8 353.06) (xy 434.34 353.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 35fb7802-f35d-4cca-b86e-4d88c4d77ccb)
)
(wire (pts (xy 441.96 368.3) (xy 431.8 368.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c02e3b9-ddbf-414e-bd6a-7753452f5d83)
)
(wire (pts (xy 386.08 335.28) (xy 386.08 325.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f597c33-a66e-4be0-8ad1-e2fe8deac0e7)
)
(wire (pts (xy 393.7 378.46) (xy 391.16 378.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4031dcd0-14f2-4106-ba05-92478f2db5b2)
)
(wire (pts (xy 441.96 373.38) (xy 431.8 373.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4114c35e-a50f-4d2f-b38c-d97cb533660b)
)
(wire (pts (xy 383.54 337.82) (xy 393.7 337.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 428ea2e9-a465-4995-b964-890036a81b00)
)
(wire (pts (xy 441.96 383.54) (xy 431.8 383.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 441df31c-6220-410f-994e-43f62e95fe1e)
)
(wire (pts (xy 383.54 340.36) (xy 393.7 340.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 475c9fad-825b-4492-a344-62993b976bf4)
)
(wire (pts (xy 391.16 391.16) (xy 391.16 378.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 47d22ba0-e829-4963-8865-6dfcf76efa2f)
)
(wire (pts (xy 439.42 340.36) (xy 439.42 355.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f6363a0-b833-4d74-8e59-aaa3c6ef80a8)
)
(wire (pts (xy 441.96 320.04) (xy 431.8 320.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 56084a5b-4bf1-403a-8a6e-9246d2e25295)
)
(wire (pts (xy 393.7 342.9) (xy 386.08 342.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 565e1fa3-e99f-4808-a9fd-afdffb5e2ff6)
)
(wire (pts (xy 393.7 360.68) (xy 391.16 360.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 57d1c4b9-655c-4e6f-9f08-1cb10a44ced9)
)
(wire (pts (xy 383.54 370.84) (xy 393.7 370.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 692fbcc1-7edf-4fdb-a2a2-b2f856812dd9)
)
(wire (pts (xy 386.08 365.76) (xy 386.08 342.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6952d868-be94-46c8-8f9f-74678b2bb39d)
)
(wire (pts (xy 391.16 355.6) (xy 391.16 353.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6b392a55-36b0-4b4b-b69e-0ac7da434a0a)
)
(wire (pts (xy 441.96 375.92) (xy 431.8 375.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 733d33ba-0148-4815-bfda-79cefa9dad14)
)
(wire (pts (xy 439.42 378.46) (xy 439.42 355.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 748ae873-5513-40ad-83f4-6a31ddfa04d2)
)
(wire (pts (xy 383.54 388.62) (xy 393.7 388.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7628a5f0-dd28-44d1-b2f0-fabb597c51fd)
)
(wire (pts (xy 393.7 335.28) (xy 386.08 335.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7c97fca9-b391-4541-83a9-5387b28b4745)
)
(wire (pts (xy 431.8 378.46) (xy 439.42 378.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7e48c140-87b6-46d8-867c-65f2f4bd32cb)
)
(wire (pts (xy 441.96 317.5) (xy 431.8 317.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7f6ebd33-2f2f-4f93-9c30-96a5dba4060e)
)
(wire (pts (xy 441.96 332.74) (xy 431.8 332.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 81497ed4-3584-4644-b044-fe37122a3ab2)
)
(wire (pts (xy 441.96 322.58) (xy 431.8 322.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 87c2ff68-b9a8-42d3-a627-d33b558cc072)
)
(wire (pts (xy 393.7 355.6) (xy 391.16 355.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8a227ebb-c4c9-4c7a-b713-b242d756b713)
)
(wire (pts (xy 386.08 342.9) (xy 386.08 335.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8e39021b-b8ea-4218-b1fa-4ee74a93f566)
)
(wire (pts (xy 431.8 355.6) (xy 439.42 355.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8e8adab4-d998-4c5c-8c9f-10baf0fcffa8)
)
(wire (pts (xy 441.96 337.82) (xy 431.8 337.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8f7112f9-148d-4c84-a22f-5c22b2dc5a2d)
)
(wire (pts (xy 383.54 358.14) (xy 393.7 358.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9682fa48-1510-495d-b73c-474f7b88d142)
)
(wire (pts (xy 393.7 322.58) (xy 386.08 322.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a3a79b54-157f-4c46-a84a-669b4d176352)
)
(wire (pts (xy 391.16 378.46) (xy 391.16 360.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a6aff6d9-f267-444f-b266-5792b05c0e99)
)
(wire (pts (xy 391.16 360.68) (xy 391.16 355.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a7c373ab-997f-4601-96f6-d1bdc6efd791)
)
(wire (pts (xy 441.96 360.68) (xy 431.8 360.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a804ef1b-4aa7-4445-afee-04312db6365f)
)
(wire (pts (xy 441.96 363.22) (xy 431.8 363.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid acafb5e9-e2d8-4af5-92a9-c79b069b0703)
)
(wire (pts (xy 391.16 330.2) (xy 391.16 317.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b35236a8-7c59-46ab-ac17-cb0733a65890)
)
(wire (pts (xy 386.08 322.58) (xy 386.08 314.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b587147c-7d1b-4d6c-b3e4-3ebc00e8a3ab)
)
(wire (pts (xy 393.7 347.98) (xy 391.16 347.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b5e1867e-9dfe-40fc-ac59-0c7a8f0bf98b)
)
(wire (pts (xy 431.8 325.12) (xy 441.96 325.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b8c4132a-d6bc-4020-b5a1-4840fd0d5756)
)
(wire (pts (xy 386.08 383.54) (xy 386.08 373.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b99ceade-1bc1-4f03-985a-b735f42cffe0)
)
(wire (pts (xy 393.7 365.76) (xy 386.08 365.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bfbc72c9-423e-47bc-b723-16b7c69eb2a2)
)
(wire (pts (xy 439.42 314.96) (xy 439.42 340.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c03a25c7-5f45-415a-84b3-d84920a0de78)
)
(wire (pts (xy 383.54 363.22) (xy 393.7 363.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c57da38d-7eda-4fee-92d6-d5d48ff96b85)
)
(wire (pts (xy 434.34 314.96) (xy 434.34 353.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c82235a2-eb27-4adf-989c-d1145fe03be7)
)
(wire (pts (xy 383.54 350.52) (xy 393.7 350.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c8906bef-df1d-4406-b25a-f022c6a04d1d)
)
(wire (pts (xy 431.8 381) (xy 434.34 381))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ce5c4531-e013-4ec5-b026-d7e5309bfe46)
)
(wire (pts (xy 441.96 335.28) (xy 431.8 335.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cf29e26c-05d2-44f0-b022-a9ff19758afa)
)
(wire (pts (xy 441.96 345.44) (xy 431.8 345.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d1536c06-9802-421e-8e9f-a6319ac1f945)
)
(wire (pts (xy 441.96 365.76) (xy 431.8 365.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d1d9a425-b52d-48bf-9ffc-bea08c9eead5)
)
(wire (pts (xy 393.7 330.2) (xy 391.16 330.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d73f149a-60bf-4a60-94af-1a54a51c5050)
)
(wire (pts (xy 391.16 353.06) (xy 391.16 347.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d953ab3e-ffb5-41cc-a520-0512eb93a9b1)
)
(wire (pts (xy 391.16 347.98) (xy 391.16 330.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid de266557-904e-453d-8202-85adced7bfdc)
)
(wire (pts (xy 393.7 386.08) (xy 386.08 386.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e5263a86-efa7-4327-83d8-1e48523f62dd)
)
(wire (pts (xy 441.96 358.14) (xy 431.8 358.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e79d92a9-265b-4de1-a423-f5922d6842c5)
)
(wire (pts (xy 441.96 370.84) (xy 431.8 370.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fc29e955-9fdd-409b-bdd5-0b2b51360fc0)
)
(wire (pts (xy 393.7 325.12) (xy 386.08 325.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fdd5c264-4187-49b4-9be2-21a5e319d9c0)
)
(global_label "DDR_BA1" (shape input) (at 441.96 335.28 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 18626314-e08b-40de-a2c3-1ad92490c786)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 452.7188 335.2006 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_A0" (shape input) (at 441.96 350.52 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1dea9251-36b6-48c9-bc78-76abe621fb6b)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 451.4488 350.4406 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_A6" (shape input) (at 441.96 363.22 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 275e5f3d-903f-4469-bab7-1e465c65e57a)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 451.4488 363.1406 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_A13" (shape input) (at 441.96 391.16 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 4057049c-e92f-4dc2-8f45-ba2bf803d759)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 452.6583 391.0806 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_DQ1" (shape input) (at 383.54 350.52 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4445e826-59d1-4d74-8640-19c2b211a19d)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 372.5393 350.5994 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DDR_DM" (shape input) (at 383.54 337.82 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 47887039-ab0b-44df-a447-62e7b34ddc3b)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 373.6279 337.8994 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DDR_A1" (shape input) (at 441.96 345.44 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 48012d16-1245-440e-8b40-cb381626e45d)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 451.4488 345.3606 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_A11" (shape input) (at 441.96 373.38 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 49a4ffa4-f6e8-4ba5-8cc1-1104c9091373)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 452.6583 373.3006 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_DQ2" (shape input) (at 383.54 370.84 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4b400ef8-e03b-4913-9d89-762b094359ae)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 372.5393 370.9194 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DDR_RAS" (shape input) (at 441.96 322.58 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5e95de08-6e2a-49bd-a55b-1cffca44870e)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 452.7188 322.5006 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_A7" (shape input) (at 441.96 368.3 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 695289ea-d9db-4439-84b6-1b14f4631d7c)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 451.4488 368.2206 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_DQS_N" (shape input) (at 383.54 327.66 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6aaab32c-95cd-4c96-9980-3bcc958c5905)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 370.2412 327.5806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DDR_CK_P" (shape input) (at 383.54 388.62 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 72eea5f2-c686-43b1-9ce1-3534f07bf8d0)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 371.5717 388.6994 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DDR_CK_N" (shape input) (at 441.96 325.12 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 736da7d2-750e-473b-b5f4-2c3ee77aaf66)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 453.9888 325.0406 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_ODT" (shape input) (at 441.96 327.66 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 77994f1b-0036-4e42-b30b-c1c82e8aff31)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 452.7188 327.5806 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_DQ0" (shape input) (at 383.54 358.14 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8b710683-0f26-4b44-8e26-b7d0cc2ebd52)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 372.5393 358.2194 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DDR_A10" (shape input) (at 441.96 342.9 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9782a3ac-fe47-4039-a120-3b6d3e200d63)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 452.6583 342.8206 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_DQ3" (shape input) (at 383.54 368.3 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 98832592-2b79-456f-b666-68f06b21eed1)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 372.5393 368.3794 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DDR_A5" (shape input) (at 441.96 360.68 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9c61524e-22a5-4f18-a0a6-6aa7f6600408)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 451.4488 360.6006 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_CKE" (shape input) (at 441.96 317.5 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a0aaa462-87c6-4da9-87e8-71c1008b12bf)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 452.8398 317.4206 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_A2" (shape input) (at 441.96 347.98 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a81eb616-dbb8-4dec-a2c7-1a549c965627)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 451.4488 347.9006 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_DQ6" (shape input) (at 383.54 332.74 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid af862f2e-3c08-4fe8-98d7-c2b88ee76d26)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 372.5393 332.8194 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DDR_A3" (shape input) (at 441.96 358.14 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid b53ce72c-140a-4078-92bd-2034264f23bf)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 451.4488 358.0606 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_WE" (shape input) (at 441.96 320.04 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid cc43fe84-2bde-4d56-9fd2-13025305a0f3)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 451.7512 319.9606 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_A12" (shape input) (at 441.96 383.54 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d1071065-a826-4523-8592-fbe1dd1ad4d8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 452.6583 383.4606 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_DQ4" (shape input) (at 383.54 363.22 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d20836ee-edb5-4388-9d5e-560caf82518c)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 372.5393 363.2994 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DDR_A9" (shape input) (at 441.96 370.84 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d221b2b6-ba5c-4a2f-9fbe-ad5cf4c5b4e6)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 451.4488 370.7606 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_CAS" (shape input) (at 441.96 337.82 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d4f50982-ebac-4687-b453-7cf1f1f95204)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 452.7188 337.7406 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_DQS_P" (shape input) (at 383.54 340.36 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid de423d1d-7e01-428e-8578-2170b91a3b64)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 370.3017 340.2806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DDR_A8" (shape input) (at 441.96 375.92 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid df50bcbf-56d5-42fd-ae5e-8c907889f3e4)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 451.4488 375.8406 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_DQ5" (shape input) (at 383.54 375.92 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e10eeee5-7da0-47cc-8d94-b3adb91e96f9)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 372.5393 375.9994 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DDR_BA0" (shape input) (at 441.96 332.74 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid f2d3ee53-0da9-433c-a12c-6beef57a75bb)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 452.7188 332.6606 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DDR_DQ7" (shape input) (at 383.54 345.44 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid fd2b3a05-3d6c-44db-8eb0-d96a99a2fd59)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 372.5393 345.5194 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DDR_A4" (shape input) (at 441.96 365.76 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid ffac5a6e-760e-4155-931b-4cfb6367fea0)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 451.4488 365.6806 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(symbol (lib_id "power:GND") (at 439.42 314.96 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 0c4cf841-d4bd-4f34-b6eb-fb24b2556817)
(property "Reference" "#PWR0129" (id 0) (at 439.42 308.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 439.42 309.88 0))
(property "Footprint" "" (id 2) (at 439.42 314.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 439.42 314.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6eae93f8-b931-483a-8360-35b744420b6a))
)
(symbol (lib_id "power:+1V8") (at 391.16 314.96 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 82c0a0c2-ab73-449c-bcdc-c0a6458a4dbf)
(property "Reference" "#PWR0126" (id 0) (at 391.16 318.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+1V8" (id 1) (at 391.16 309.88 0))
(property "Footprint" "" (id 2) (at 391.16 314.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 391.16 314.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 77ec7341-c925-41b9-8905-1daa5f674d10))
)
(symbol (lib_id "power:GND") (at 386.08 314.96 180) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid becdde24-de80-49f6-a240-8ebcf0a00cb2)