-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfrontier.bsf
1219 lines (1219 loc) · 46.2 KB
/
frontier.bsf
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
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to occur.
*/
/*
Copyright (C) 1991-2012 Altera Corporation
Your use of Altera Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Altera Program License
Subscription Agreement, Altera MegaCore Function License
Agreement, or other applicable license agreement, including,
without limitation, that your use is for the sole purpose of
programming logic devices manufactured by Altera and sold by
Altera or its authorized distributors. Please refer to the
applicable agreement for further details.
*/
(header "symbol" (version "1.1"))
(symbol
(rect 0 0 368 2896)
(text "frontier" (rect 163 -1 191 11)(font "Arial" (font_size 10)))
(text "inst" (rect 8 2880 20 2892)(font "Arial" ))
(port
(pt 0 72)
(input)
(text "m0_RSTN" (rect 0 0 46 12)(font "Arial" (font_size 8)))
(text "m0_RSTN" (rect 4 61 46 72)(font "Arial" (font_size 8)))
(line (pt 0 72)(pt 144 72)(line_width 1))
)
(port
(pt 0 88)
(input)
(text "m0_CLK" (rect 0 0 38 12)(font "Arial" (font_size 8)))
(text "m0_CLK" (rect 4 77 40 88)(font "Arial" (font_size 8)))
(line (pt 0 88)(pt 144 88)(line_width 1))
)
(port
(pt 0 104)
(input)
(text "m0_ADDR[21..0]" (rect 0 0 73 12)(font "Arial" (font_size 8)))
(text "m0_ADDR[21..0]" (rect 4 93 88 104)(font "Arial" (font_size 8)))
(line (pt 0 104)(pt 144 104)(line_width 3))
)
(port
(pt 0 136)
(input)
(text "m0_CSN[3..0]" (rect 0 0 58 12)(font "Arial" (font_size 8)))
(text "m0_CSN[3..0]" (rect 4 125 76 136)(font "Arial" (font_size 8)))
(line (pt 0 136)(pt 144 136)(line_width 3))
)
(port
(pt 0 152)
(input)
(text "m0_BEN[3..0]" (rect 0 0 58 12)(font "Arial" (font_size 8)))
(text "m0_BEN[3..0]" (rect 4 141 76 152)(font "Arial" (font_size 8)))
(line (pt 0 152)(pt 144 152)(line_width 3))
)
(port
(pt 0 168)
(input)
(text "m0_RDN" (rect 0 0 41 12)(font "Arial" (font_size 8)))
(text "m0_RDN" (rect 4 157 40 168)(font "Arial" (font_size 8)))
(line (pt 0 168)(pt 144 168)(line_width 1))
)
(port
(pt 0 184)
(input)
(text "m0_WRN" (rect 0 0 44 12)(font "Arial" (font_size 8)))
(text "m0_WRN" (rect 4 173 40 184)(font "Arial" (font_size 8)))
(line (pt 0 184)(pt 144 184)(line_width 1))
)
(port
(pt 0 544)
(input)
(text "shield_ctrl_A_OCN" (rect 0 0 80 12)(font "Arial" (font_size 8)))
(text "shield_ctrl_A_OCN" (rect 4 533 106 544)(font "Arial" (font_size 8)))
(line (pt 0 544)(pt 144 544)(line_width 1))
)
(port
(pt 0 608)
(input)
(text "shield_ctrl_B_OCN" (rect 0 0 77 12)(font "Arial" (font_size 8)))
(text "shield_ctrl_B_OCN" (rect 4 597 106 608)(font "Arial" (font_size 8)))
(line (pt 0 608)(pt 144 608)(line_width 1))
)
(port
(pt 0 2480)
(input)
(text "m1_CLK" (rect 0 0 37 12)(font "Arial" (font_size 8)))
(text "m1_CLK" (rect 4 2469 40 2480)(font "Arial" (font_size 8)))
(line (pt 0 2480)(pt 144 2480)(line_width 1))
)
(port
(pt 0 2496)
(input)
(text "m1_RSTN" (rect 0 0 44 12)(font "Arial" (font_size 8)))
(text "m1_RSTN" (rect 4 2485 46 2496)(font "Arial" (font_size 8)))
(line (pt 0 2496)(pt 144 2496)(line_width 1))
)
(port
(pt 0 2536)
(input)
(text "ad7490_0_DOUT" (rect 0 0 73 12)(font "Arial" (font_size 8)))
(text "ad7490_0_DOUT" (rect 4 2525 82 2536)(font "Arial" (font_size 8)))
(line (pt 0 2536)(pt 144 2536)(line_width 1))
)
(port
(pt 0 2624)
(input)
(text "ad7490_1_DOUT" (rect 0 0 71 12)(font "Arial" (font_size 8)))
(text "ad7490_1_DOUT" (rect 4 2613 82 2624)(font "Arial" (font_size 8)))
(line (pt 0 2624)(pt 144 2624)(line_width 1))
)
(port
(pt 0 200)
(output)
(text "m0_WAITN" (rect 0 0 53 12)(font "Arial" (font_size 8)))
(text "m0_WAITN" (rect 4 189 52 200)(font "Arial" (font_size 8)))
(line (pt 0 200)(pt 144 200)(line_width 1))
)
(port
(pt 0 216)
(output)
(text "m0_EINT[9..0]" (rect 0 0 61 12)(font "Arial" (font_size 8)))
(text "m0_EINT[9..0]" (rect 4 205 82 216)(font "Arial" (font_size 8)))
(line (pt 0 216)(pt 144 216)(line_width 3))
)
(port
(pt 0 256)
(output)
(text "led_f0_R" (rect 0 0 38 12)(font "Arial" (font_size 8)))
(text "led_f0_R" (rect 4 245 52 256)(font "Arial" (font_size 8)))
(line (pt 0 256)(pt 144 256)(line_width 1))
)
(port
(pt 0 272)
(output)
(text "led_f0_G" (rect 0 0 37 12)(font "Arial" (font_size 8)))
(text "led_f0_G" (rect 4 261 52 272)(font "Arial" (font_size 8)))
(line (pt 0 272)(pt 144 272)(line_width 1))
)
(port
(pt 0 288)
(output)
(text "led_f0_B" (rect 0 0 36 12)(font "Arial" (font_size 8)))
(text "led_f0_B" (rect 4 277 52 288)(font "Arial" (font_size 8)))
(line (pt 0 288)(pt 144 288)(line_width 1))
)
(port
(pt 0 328)
(output)
(text "led_f1_R" (rect 0 0 37 12)(font "Arial" (font_size 8)))
(text "led_f1_R" (rect 4 317 52 328)(font "Arial" (font_size 8)))
(line (pt 0 328)(pt 144 328)(line_width 1))
)
(port
(pt 0 344)
(output)
(text "led_f1_G" (rect 0 0 36 12)(font "Arial" (font_size 8)))
(text "led_f1_G" (rect 4 333 52 344)(font "Arial" (font_size 8)))
(line (pt 0 344)(pt 144 344)(line_width 1))
)
(port
(pt 0 360)
(output)
(text "led_f1_B" (rect 0 0 35 12)(font "Arial" (font_size 8)))
(text "led_f1_B" (rect 4 349 52 360)(font "Arial" (font_size 8)))
(line (pt 0 360)(pt 144 360)(line_width 1))
)
(port
(pt 0 400)
(output)
(text "led_f2_R" (rect 0 0 38 12)(font "Arial" (font_size 8)))
(text "led_f2_R" (rect 4 389 52 400)(font "Arial" (font_size 8)))
(line (pt 0 400)(pt 144 400)(line_width 1))
)
(port
(pt 0 416)
(output)
(text "led_f2_G" (rect 0 0 37 12)(font "Arial" (font_size 8)))
(text "led_f2_G" (rect 4 405 52 416)(font "Arial" (font_size 8)))
(line (pt 0 416)(pt 144 416)(line_width 1))
)
(port
(pt 0 432)
(output)
(text "led_f2_B" (rect 0 0 36 12)(font "Arial" (font_size 8)))
(text "led_f2_B" (rect 4 421 52 432)(font "Arial" (font_size 8)))
(line (pt 0 432)(pt 144 432)(line_width 1))
)
(port
(pt 0 472)
(output)
(text "led_f3_R" (rect 0 0 38 12)(font "Arial" (font_size 8)))
(text "led_f3_R" (rect 4 461 52 472)(font "Arial" (font_size 8)))
(line (pt 0 472)(pt 144 472)(line_width 1))
)
(port
(pt 0 488)
(output)
(text "led_f3_G" (rect 0 0 37 12)(font "Arial" (font_size 8)))
(text "led_f3_G" (rect 4 477 52 488)(font "Arial" (font_size 8)))
(line (pt 0 488)(pt 144 488)(line_width 1))
)
(port
(pt 0 504)
(output)
(text "led_f3_B" (rect 0 0 36 12)(font "Arial" (font_size 8)))
(text "led_f3_B" (rect 4 493 52 504)(font "Arial" (font_size 8)))
(line (pt 0 504)(pt 144 504)(line_width 1))
)
(port
(pt 0 560)
(output)
(text "shield_ctrl_A_PWREN" (rect 0 0 97 12)(font "Arial" (font_size 8)))
(text "shield_ctrl_A_PWREN" (rect 4 549 118 560)(font "Arial" (font_size 8)))
(line (pt 0 560)(pt 144 560)(line_width 1))
)
(port
(pt 0 576)
(output)
(text "shield_ctrl_A_HOE" (rect 0 0 80 12)(font "Arial" (font_size 8)))
(text "shield_ctrl_A_HOE" (rect 4 565 106 576)(font "Arial" (font_size 8)))
(line (pt 0 576)(pt 144 576)(line_width 1))
)
(port
(pt 0 592)
(output)
(text "shield_ctrl_A_LOE" (rect 0 0 79 12)(font "Arial" (font_size 8)))
(text "shield_ctrl_A_LOE" (rect 4 581 106 592)(font "Arial" (font_size 8)))
(line (pt 0 592)(pt 144 592)(line_width 1))
)
(port
(pt 0 624)
(output)
(text "shield_ctrl_B_PWREN" (rect 0 0 95 12)(font "Arial" (font_size 8)))
(text "shield_ctrl_B_PWREN" (rect 4 613 118 624)(font "Arial" (font_size 8)))
(line (pt 0 624)(pt 144 624)(line_width 1))
)
(port
(pt 0 640)
(output)
(text "shield_ctrl_B_HOE" (rect 0 0 77 12)(font "Arial" (font_size 8)))
(text "shield_ctrl_B_HOE" (rect 4 629 106 640)(font "Arial" (font_size 8)))
(line (pt 0 640)(pt 144 640)(line_width 1))
)
(port
(pt 0 656)
(output)
(text "shield_ctrl_B_LOE" (rect 0 0 76 12)(font "Arial" (font_size 8)))
(text "shield_ctrl_B_LOE" (rect 4 645 106 656)(font "Arial" (font_size 8)))
(line (pt 0 656)(pt 144 656)(line_width 1))
)
(port
(pt 0 1576)
(output)
(text "pwm_c0_export" (rect 0 0 64 12)(font "Arial" (font_size 8)))
(text "pwm_c0_export" (rect 4 1565 82 1576)(font "Arial" (font_size 8)))
(line (pt 0 1576)(pt 144 1576)(line_width 1))
)
(port
(pt 0 1616)
(output)
(text "step_motor_driver_0_AX" (rect 0 0 106 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_0_AX" (rect 4 1605 136 1616)(font "Arial" (font_size 8)))
(line (pt 0 1616)(pt 144 1616)(line_width 1))
)
(port
(pt 0 1632)
(output)
(text "step_motor_driver_0_AY" (rect 0 0 107 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_0_AY" (rect 4 1621 136 1632)(font "Arial" (font_size 8)))
(line (pt 0 1632)(pt 144 1632)(line_width 1))
)
(port
(pt 0 1648)
(output)
(text "step_motor_driver_0_BX" (rect 0 0 103 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_0_BX" (rect 4 1637 136 1648)(font "Arial" (font_size 8)))
(line (pt 0 1648)(pt 144 1648)(line_width 1))
)
(port
(pt 0 1664)
(output)
(text "step_motor_driver_0_BY" (rect 0 0 105 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_0_BY" (rect 4 1653 136 1664)(font "Arial" (font_size 8)))
(line (pt 0 1664)(pt 144 1664)(line_width 1))
)
(port
(pt 0 1680)
(output)
(text "step_motor_driver_0_AE" (rect 0 0 107 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_0_AE" (rect 4 1669 136 1680)(font "Arial" (font_size 8)))
(line (pt 0 1680)(pt 144 1680)(line_width 1))
)
(port
(pt 0 1696)
(output)
(text "step_motor_driver_0_BE" (rect 0 0 105 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_0_BE" (rect 4 1685 136 1696)(font "Arial" (font_size 8)))
(line (pt 0 1696)(pt 144 1696)(line_width 1))
)
(port
(pt 0 1736)
(output)
(text "step_motor_driver_1_AX" (rect 0 0 105 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_1_AX" (rect 4 1725 136 1736)(font "Arial" (font_size 8)))
(line (pt 0 1736)(pt 144 1736)(line_width 1))
)
(port
(pt 0 1752)
(output)
(text "step_motor_driver_1_AY" (rect 0 0 106 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_1_AY" (rect 4 1741 136 1752)(font "Arial" (font_size 8)))
(line (pt 0 1752)(pt 144 1752)(line_width 1))
)
(port
(pt 0 1768)
(output)
(text "step_motor_driver_1_BX" (rect 0 0 102 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_1_BX" (rect 4 1757 136 1768)(font "Arial" (font_size 8)))
(line (pt 0 1768)(pt 144 1768)(line_width 1))
)
(port
(pt 0 1784)
(output)
(text "step_motor_driver_1_BY" (rect 0 0 103 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_1_BY" (rect 4 1773 136 1784)(font "Arial" (font_size 8)))
(line (pt 0 1784)(pt 144 1784)(line_width 1))
)
(port
(pt 0 1800)
(output)
(text "step_motor_driver_1_AE" (rect 0 0 106 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_1_AE" (rect 4 1789 136 1800)(font "Arial" (font_size 8)))
(line (pt 0 1800)(pt 144 1800)(line_width 1))
)
(port
(pt 0 1816)
(output)
(text "step_motor_driver_1_BE" (rect 0 0 103 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_1_BE" (rect 4 1805 136 1816)(font "Arial" (font_size 8)))
(line (pt 0 1816)(pt 144 1816)(line_width 1))
)
(port
(pt 0 1856)
(output)
(text "brush_motor_driver_3_HX" (rect 0 0 110 12)(font "Arial" (font_size 8)))
(text "brush_motor_driver_3_HX" (rect 4 1845 142 1856)(font "Arial" (font_size 8)))
(line (pt 0 1856)(pt 144 1856)(line_width 1))
)
(port
(pt 0 1872)
(output)
(text "brush_motor_driver_3_HY" (rect 0 0 112 12)(font "Arial" (font_size 8)))
(text "brush_motor_driver_3_HY" (rect 4 1861 142 1872)(font "Arial" (font_size 8)))
(line (pt 0 1872)(pt 144 1872)(line_width 1))
)
(port
(pt 0 1912)
(output)
(text "brush_motor_driver_2_HX" (rect 0 0 110 12)(font "Arial" (font_size 8)))
(text "brush_motor_driver_2_HX" (rect 4 1901 142 1912)(font "Arial" (font_size 8)))
(line (pt 0 1912)(pt 144 1912)(line_width 1))
)
(port
(pt 0 1928)
(output)
(text "brush_motor_driver_2_HY" (rect 0 0 112 12)(font "Arial" (font_size 8)))
(text "brush_motor_driver_2_HY" (rect 4 1917 142 1928)(font "Arial" (font_size 8)))
(line (pt 0 1928)(pt 144 1928)(line_width 1))
)
(port
(pt 0 1968)
(output)
(text "brush_motor_driver_1_HX" (rect 0 0 109 12)(font "Arial" (font_size 8)))
(text "brush_motor_driver_1_HX" (rect 4 1957 142 1968)(font "Arial" (font_size 8)))
(line (pt 0 1968)(pt 144 1968)(line_width 1))
)
(port
(pt 0 1984)
(output)
(text "brush_motor_driver_1_HY" (rect 0 0 110 12)(font "Arial" (font_size 8)))
(text "brush_motor_driver_1_HY" (rect 4 1973 142 1984)(font "Arial" (font_size 8)))
(line (pt 0 1984)(pt 144 1984)(line_width 1))
)
(port
(pt 0 2024)
(output)
(text "step_motor_driver_2_AX" (rect 0 0 106 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_2_AX" (rect 4 2013 136 2024)(font "Arial" (font_size 8)))
(line (pt 0 2024)(pt 144 2024)(line_width 1))
)
(port
(pt 0 2040)
(output)
(text "step_motor_driver_2_AY" (rect 0 0 107 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_2_AY" (rect 4 2029 136 2040)(font "Arial" (font_size 8)))
(line (pt 0 2040)(pt 144 2040)(line_width 1))
)
(port
(pt 0 2056)
(output)
(text "step_motor_driver_2_BX" (rect 0 0 103 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_2_BX" (rect 4 2045 136 2056)(font "Arial" (font_size 8)))
(line (pt 0 2056)(pt 144 2056)(line_width 1))
)
(port
(pt 0 2072)
(output)
(text "step_motor_driver_2_BY" (rect 0 0 105 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_2_BY" (rect 4 2061 136 2072)(font "Arial" (font_size 8)))
(line (pt 0 2072)(pt 144 2072)(line_width 1))
)
(port
(pt 0 2088)
(output)
(text "step_motor_driver_2_AE" (rect 0 0 107 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_2_AE" (rect 4 2077 136 2088)(font "Arial" (font_size 8)))
(line (pt 0 2088)(pt 144 2088)(line_width 1))
)
(port
(pt 0 2104)
(output)
(text "step_motor_driver_2_BE" (rect 0 0 105 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_2_BE" (rect 4 2093 136 2104)(font "Arial" (font_size 8)))
(line (pt 0 2104)(pt 144 2104)(line_width 1))
)
(port
(pt 0 2144)
(output)
(text "step_motor_driver_3_AX" (rect 0 0 106 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_3_AX" (rect 4 2133 136 2144)(font "Arial" (font_size 8)))
(line (pt 0 2144)(pt 144 2144)(line_width 1))
)
(port
(pt 0 2160)
(output)
(text "step_motor_driver_3_AY" (rect 0 0 107 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_3_AY" (rect 4 2149 136 2160)(font "Arial" (font_size 8)))
(line (pt 0 2160)(pt 144 2160)(line_width 1))
)
(port
(pt 0 2176)
(output)
(text "step_motor_driver_3_BX" (rect 0 0 103 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_3_BX" (rect 4 2165 136 2176)(font "Arial" (font_size 8)))
(line (pt 0 2176)(pt 144 2176)(line_width 1))
)
(port
(pt 0 2192)
(output)
(text "step_motor_driver_3_BY" (rect 0 0 105 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_3_BY" (rect 4 2181 136 2192)(font "Arial" (font_size 8)))
(line (pt 0 2192)(pt 144 2192)(line_width 1))
)
(port
(pt 0 2208)
(output)
(text "step_motor_driver_3_AE" (rect 0 0 107 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_3_AE" (rect 4 2197 136 2208)(font "Arial" (font_size 8)))
(line (pt 0 2208)(pt 144 2208)(line_width 1))
)
(port
(pt 0 2224)
(output)
(text "step_motor_driver_3_BE" (rect 0 0 105 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_3_BE" (rect 4 2213 136 2224)(font "Arial" (font_size 8)))
(line (pt 0 2224)(pt 144 2224)(line_width 1))
)
(port
(pt 0 2264)
(output)
(text "step_motor_driver_4_AX" (rect 0 0 107 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_4_AX" (rect 4 2253 136 2264)(font "Arial" (font_size 8)))
(line (pt 0 2264)(pt 144 2264)(line_width 1))
)
(port
(pt 0 2280)
(output)
(text "step_motor_driver_4_AY" (rect 0 0 108 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_4_AY" (rect 4 2269 136 2280)(font "Arial" (font_size 8)))
(line (pt 0 2280)(pt 144 2280)(line_width 1))
)
(port
(pt 0 2296)
(output)
(text "step_motor_driver_4_BX" (rect 0 0 105 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_4_BX" (rect 4 2285 136 2296)(font "Arial" (font_size 8)))
(line (pt 0 2296)(pt 144 2296)(line_width 1))
)
(port
(pt 0 2312)
(output)
(text "step_motor_driver_4_BY" (rect 0 0 106 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_4_BY" (rect 4 2301 136 2312)(font "Arial" (font_size 8)))
(line (pt 0 2312)(pt 144 2312)(line_width 1))
)
(port
(pt 0 2328)
(output)
(text "step_motor_driver_4_AE" (rect 0 0 108 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_4_AE" (rect 4 2317 136 2328)(font "Arial" (font_size 8)))
(line (pt 0 2328)(pt 144 2328)(line_width 1))
)
(port
(pt 0 2344)
(output)
(text "step_motor_driver_4_BE" (rect 0 0 106 12)(font "Arial" (font_size 8)))
(text "step_motor_driver_4_BE" (rect 4 2333 136 2344)(font "Arial" (font_size 8)))
(line (pt 0 2344)(pt 144 2344)(line_width 1))
)
(port
(pt 0 2384)
(output)
(text "brush_motor_driver_0_HX" (rect 0 0 110 12)(font "Arial" (font_size 8)))
(text "brush_motor_driver_0_HX" (rect 4 2373 142 2384)(font "Arial" (font_size 8)))
(line (pt 0 2384)(pt 144 2384)(line_width 1))
)
(port
(pt 0 2400)
(output)
(text "brush_motor_driver_0_HY" (rect 0 0 112 12)(font "Arial" (font_size 8)))
(text "brush_motor_driver_0_HY" (rect 4 2389 142 2400)(font "Arial" (font_size 8)))
(line (pt 0 2400)(pt 144 2400)(line_width 1))
)
(port
(pt 0 2440)
(output)
(text "fan_motor_driver_0_export" (rect 0 0 113 12)(font "Arial" (font_size 8)))
(text "fan_motor_driver_0_export" (rect 4 2429 154 2440)(font "Arial" (font_size 8)))
(line (pt 0 2440)(pt 144 2440)(line_width 1))
)
(port
(pt 0 2552)
(output)
(text "ad7490_0_SCLK" (rect 0 0 71 12)(font "Arial" (font_size 8)))
(text "ad7490_0_SCLK" (rect 4 2541 82 2552)(font "Arial" (font_size 8)))
(line (pt 0 2552)(pt 144 2552)(line_width 1))
)
(port
(pt 0 2568)
(output)
(text "ad7490_0_CSN" (rect 0 0 66 12)(font "Arial" (font_size 8)))
(text "ad7490_0_CSN" (rect 4 2557 76 2568)(font "Arial" (font_size 8)))
(line (pt 0 2568)(pt 144 2568)(line_width 1))
)
(port
(pt 0 2584)
(output)
(text "ad7490_0_DIN" (rect 0 0 62 12)(font "Arial" (font_size 8)))
(text "ad7490_0_DIN" (rect 4 2573 76 2584)(font "Arial" (font_size 8)))
(line (pt 0 2584)(pt 144 2584)(line_width 1))
)
(port
(pt 0 2640)
(output)
(text "ad7490_1_SCLK" (rect 0 0 70 12)(font "Arial" (font_size 8)))
(text "ad7490_1_SCLK" (rect 4 2629 82 2640)(font "Arial" (font_size 8)))
(line (pt 0 2640)(pt 144 2640)(line_width 1))
)
(port
(pt 0 2656)
(output)
(text "ad7490_1_CSN" (rect 0 0 64 12)(font "Arial" (font_size 8)))
(text "ad7490_1_CSN" (rect 4 2645 76 2656)(font "Arial" (font_size 8)))
(line (pt 0 2656)(pt 144 2656)(line_width 1))
)
(port
(pt 0 2672)
(output)
(text "ad7490_1_DIN" (rect 0 0 61 12)(font "Arial" (font_size 8)))
(text "ad7490_1_DIN" (rect 4 2661 76 2672)(font "Arial" (font_size 8)))
(line (pt 0 2672)(pt 144 2672)(line_width 1))
)
(port
(pt 0 2728)
(output)
(text "am2301_0_clk_1us" (rect 0 0 76 12)(font "Arial" (font_size 8)))
(text "am2301_0_clk_1us" (rect 4 2717 100 2728)(font "Arial" (font_size 8)))
(line (pt 0 2728)(pt 144 2728)(line_width 1))
)
(port
(pt 0 2784)
(output)
(text "am2301_1_clk_1us" (rect 0 0 75 12)(font "Arial" (font_size 8)))
(text "am2301_1_clk_1us" (rect 4 2773 100 2784)(font "Arial" (font_size 8)))
(line (pt 0 2784)(pt 144 2784)(line_width 1))
)
(port
(pt 0 2824)
(output)
(text "steering_driver_0_export" (rect 0 0 101 12)(font "Arial" (font_size 8)))
(text "steering_driver_0_export" (rect 4 2813 148 2824)(font "Arial" (font_size 8)))
(line (pt 0 2824)(pt 144 2824)(line_width 1))
)
(port
(pt 0 2864)
(output)
(text "steering_driver_1_export" (rect 0 0 100 12)(font "Arial" (font_size 8)))
(text "steering_driver_1_export" (rect 4 2853 148 2864)(font "Arial" (font_size 8)))
(line (pt 0 2864)(pt 144 2864)(line_width 1))
)
(port
(pt 0 120)
(bidir)
(text "m0_DATA[31..0]" (rect 0 0 71 12)(font "Arial" (font_size 8)))
(text "m0_DATA[31..0]" (rect 4 109 88 120)(font "Arial" (font_size 8)))
(line (pt 0 120)(pt 144 120)(line_width 3))
)
(port
(pt 0 696)
(bidir)
(text "slot_a_P0" (rect 0 0 40 12)(font "Arial" (font_size 8)))
(text "slot_a_P0" (rect 4 685 58 696)(font "Arial" (font_size 8)))
(line (pt 0 696)(pt 144 696)(line_width 1))
)
(port
(pt 0 712)
(bidir)
(text "slot_a_P1" (rect 0 0 38 12)(font "Arial" (font_size 8)))
(text "slot_a_P1" (rect 4 701 58 712)(font "Arial" (font_size 8)))
(line (pt 0 712)(pt 144 712)(line_width 1))
)
(port
(pt 0 728)
(bidir)
(text "slot_a_P2" (rect 0 0 40 12)(font "Arial" (font_size 8)))
(text "slot_a_P2" (rect 4 717 58 728)(font "Arial" (font_size 8)))
(line (pt 0 728)(pt 144 728)(line_width 1))
)
(port
(pt 0 744)
(bidir)
(text "slot_a_P3" (rect 0 0 40 12)(font "Arial" (font_size 8)))
(text "slot_a_P3" (rect 4 733 58 744)(font "Arial" (font_size 8)))
(line (pt 0 744)(pt 144 744)(line_width 1))
)
(port
(pt 0 760)
(bidir)
(text "slot_a_P4" (rect 0 0 41 12)(font "Arial" (font_size 8)))
(text "slot_a_P4" (rect 4 749 58 760)(font "Arial" (font_size 8)))
(line (pt 0 760)(pt 144 760)(line_width 1))
)
(port
(pt 0 776)
(bidir)
(text "slot_a_P5" (rect 0 0 40 12)(font "Arial" (font_size 8)))
(text "slot_a_P5" (rect 4 765 58 776)(font "Arial" (font_size 8)))
(line (pt 0 776)(pt 144 776)(line_width 1))
)
(port
(pt 0 792)
(bidir)
(text "slot_a_P6" (rect 0 0 40 12)(font "Arial" (font_size 8)))
(text "slot_a_P6" (rect 4 781 58 792)(font "Arial" (font_size 8)))
(line (pt 0 792)(pt 144 792)(line_width 1))
)
(port
(pt 0 808)
(bidir)
(text "slot_a_P7" (rect 0 0 40 12)(font "Arial" (font_size 8)))
(text "slot_a_P7" (rect 4 797 58 808)(font "Arial" (font_size 8)))
(line (pt 0 808)(pt 144 808)(line_width 1))
)
(port
(pt 0 824)
(bidir)
(text "slot_a_P8" (rect 0 0 40 12)(font "Arial" (font_size 8)))
(text "slot_a_P8" (rect 4 813 58 824)(font "Arial" (font_size 8)))
(line (pt 0 824)(pt 144 824)(line_width 1))
)
(port
(pt 0 840)
(bidir)
(text "slot_a_P9" (rect 0 0 40 12)(font "Arial" (font_size 8)))
(text "slot_a_P9" (rect 4 829 58 840)(font "Arial" (font_size 8)))
(line (pt 0 840)(pt 144 840)(line_width 1))
)
(port
(pt 0 856)
(bidir)
(text "slot_a_P10" (rect 0 0 43 12)(font "Arial" (font_size 8)))
(text "slot_a_P10" (rect 4 845 64 856)(font "Arial" (font_size 8)))
(line (pt 0 856)(pt 144 856)(line_width 1))
)
(port
(pt 0 872)
(bidir)
(text "slot_a_P11" (rect 0 0 42 12)(font "Arial" (font_size 8)))
(text "slot_a_P11" (rect 4 861 64 872)(font "Arial" (font_size 8)))
(line (pt 0 872)(pt 144 872)(line_width 1))
)
(port
(pt 0 888)
(bidir)
(text "slot_a_P12" (rect 0 0 43 12)(font "Arial" (font_size 8)))
(text "slot_a_P12" (rect 4 877 64 888)(font "Arial" (font_size 8)))
(line (pt 0 888)(pt 144 888)(line_width 1))
)
(port
(pt 0 904)
(bidir)
(text "slot_a_P13" (rect 0 0 43 12)(font "Arial" (font_size 8)))
(text "slot_a_P13" (rect 4 893 64 904)(font "Arial" (font_size 8)))
(line (pt 0 904)(pt 144 904)(line_width 1))
)
(port
(pt 0 920)
(bidir)
(text "slot_a_P14" (rect 0 0 44 12)(font "Arial" (font_size 8)))
(text "slot_a_P14" (rect 4 909 64 920)(font "Arial" (font_size 8)))
(line (pt 0 920)(pt 144 920)(line_width 1))
)
(port
(pt 0 936)
(bidir)
(text "slot_a_P15" (rect 0 0 43 12)(font "Arial" (font_size 8)))
(text "slot_a_P15" (rect 4 925 64 936)(font "Arial" (font_size 8)))
(line (pt 0 936)(pt 144 936)(line_width 1))
)
(port
(pt 0 952)
(bidir)
(text "slot_a_P16" (rect 0 0 43 12)(font "Arial" (font_size 8)))
(text "slot_a_P16" (rect 4 941 64 952)(font "Arial" (font_size 8)))
(line (pt 0 952)(pt 144 952)(line_width 1))
)
(port
(pt 0 968)
(bidir)
(text "slot_a_P17" (rect 0 0 43 12)(font "Arial" (font_size 8)))
(text "slot_a_P17" (rect 4 957 64 968)(font "Arial" (font_size 8)))
(line (pt 0 968)(pt 144 968)(line_width 1))
)
(port
(pt 0 984)
(bidir)
(text "slot_a_P18" (rect 0 0 43 12)(font "Arial" (font_size 8)))
(text "slot_a_P18" (rect 4 973 64 984)(font "Arial" (font_size 8)))
(line (pt 0 984)(pt 144 984)(line_width 1))
)
(port
(pt 0 1000)
(bidir)
(text "slot_a_P19" (rect 0 0 43 12)(font "Arial" (font_size 8)))
(text "slot_a_P19" (rect 4 989 64 1000)(font "Arial" (font_size 8)))
(line (pt 0 1000)(pt 144 1000)(line_width 1))
)
(port
(pt 0 1016)
(bidir)
(text "slot_a_P20" (rect 0 0 44 12)(font "Arial" (font_size 8)))
(text "slot_a_P20" (rect 4 1005 64 1016)(font "Arial" (font_size 8)))
(line (pt 0 1016)(pt 144 1016)(line_width 1))
)
(port
(pt 0 1032)
(bidir)
(text "slot_a_P21" (rect 0 0 43 12)(font "Arial" (font_size 8)))
(text "slot_a_P21" (rect 4 1021 64 1032)(font "Arial" (font_size 8)))
(line (pt 0 1032)(pt 144 1032)(line_width 1))
)
(port
(pt 0 1048)
(bidir)
(text "slot_a_P22" (rect 0 0 44 12)(font "Arial" (font_size 8)))
(text "slot_a_P22" (rect 4 1037 64 1048)(font "Arial" (font_size 8)))
(line (pt 0 1048)(pt 144 1048)(line_width 1))
)
(port
(pt 0 1064)
(bidir)
(text "slot_a_P23" (rect 0 0 44 12)(font "Arial" (font_size 8)))
(text "slot_a_P23" (rect 4 1053 64 1064)(font "Arial" (font_size 8)))
(line (pt 0 1064)(pt 144 1064)(line_width 1))
)
(port
(pt 0 1080)
(bidir)
(text "slot_a_P24" (rect 0 0 46 12)(font "Arial" (font_size 8)))
(text "slot_a_P24" (rect 4 1069 64 1080)(font "Arial" (font_size 8)))
(line (pt 0 1080)(pt 144 1080)(line_width 1))
)
(port
(pt 0 1096)
(bidir)
(text "slot_a_P25" (rect 0 0 44 12)(font "Arial" (font_size 8)))
(text "slot_a_P25" (rect 4 1085 64 1096)(font "Arial" (font_size 8)))
(line (pt 0 1096)(pt 144 1096)(line_width 1))
)
(port
(pt 0 1136)
(bidir)
(text "slot_b_P0" (rect 0 0 40 12)(font "Arial" (font_size 8)))
(text "slot_b_P0" (rect 4 1125 58 1136)(font "Arial" (font_size 8)))
(line (pt 0 1136)(pt 144 1136)(line_width 1))
)
(port
(pt 0 1152)
(bidir)
(text "slot_b_P1" (rect 0 0 38 12)(font "Arial" (font_size 8)))
(text "slot_b_P1" (rect 4 1141 58 1152)(font "Arial" (font_size 8)))
(line (pt 0 1152)(pt 144 1152)(line_width 1))
)
(port
(pt 0 1168)
(bidir)
(text "slot_b_P2" (rect 0 0 40 12)(font "Arial" (font_size 8)))
(text "slot_b_P2" (rect 4 1157 58 1168)(font "Arial" (font_size 8)))
(line (pt 0 1168)(pt 144 1168)(line_width 1))
)
(port
(pt 0 1184)
(bidir)
(text "slot_b_P3" (rect 0 0 40 12)(font "Arial" (font_size 8)))
(text "slot_b_P3" (rect 4 1173 58 1184)(font "Arial" (font_size 8)))
(line (pt 0 1184)(pt 144 1184)(line_width 1))
)
(port
(pt 0 1200)
(bidir)
(text "slot_b_P4" (rect 0 0 41 12)(font "Arial" (font_size 8)))
(text "slot_b_P4" (rect 4 1189 58 1200)(font "Arial" (font_size 8)))
(line (pt 0 1200)(pt 144 1200)(line_width 1))
)
(port
(pt 0 1216)
(bidir)
(text "slot_b_P5" (rect 0 0 40 12)(font "Arial" (font_size 8)))
(text "slot_b_P5" (rect 4 1205 58 1216)(font "Arial" (font_size 8)))
(line (pt 0 1216)(pt 144 1216)(line_width 1))
)
(port
(pt 0 1232)
(bidir)
(text "slot_b_P6" (rect 0 0 40 12)(font "Arial" (font_size 8)))
(text "slot_b_P6" (rect 4 1221 58 1232)(font "Arial" (font_size 8)))
(line (pt 0 1232)(pt 144 1232)(line_width 1))
)
(port
(pt 0 1248)
(bidir)
(text "slot_b_P7" (rect 0 0 40 12)(font "Arial" (font_size 8)))
(text "slot_b_P7" (rect 4 1237 58 1248)(font "Arial" (font_size 8)))
(line (pt 0 1248)(pt 144 1248)(line_width 1))
)
(port
(pt 0 1264)
(bidir)
(text "slot_b_P8" (rect 0 0 40 12)(font "Arial" (font_size 8)))
(text "slot_b_P8" (rect 4 1253 58 1264)(font "Arial" (font_size 8)))
(line (pt 0 1264)(pt 144 1264)(line_width 1))
)
(port
(pt 0 1280)
(bidir)
(text "slot_b_P9" (rect 0 0 40 12)(font "Arial" (font_size 8)))
(text "slot_b_P9" (rect 4 1269 58 1280)(font "Arial" (font_size 8)))
(line (pt 0 1280)(pt 144 1280)(line_width 1))
)
(port
(pt 0 1296)
(bidir)
(text "slot_b_P10" (rect 0 0 43 12)(font "Arial" (font_size 8)))
(text "slot_b_P10" (rect 4 1285 64 1296)(font "Arial" (font_size 8)))
(line (pt 0 1296)(pt 144 1296)(line_width 1))
)
(port
(pt 0 1312)
(bidir)
(text "slot_b_P11" (rect 0 0 42 12)(font "Arial" (font_size 8)))
(text "slot_b_P11" (rect 4 1301 64 1312)(font "Arial" (font_size 8)))
(line (pt 0 1312)(pt 144 1312)(line_width 1))
)
(port
(pt 0 1328)
(bidir)
(text "slot_b_P12" (rect 0 0 43 12)(font "Arial" (font_size 8)))
(text "slot_b_P12" (rect 4 1317 64 1328)(font "Arial" (font_size 8)))
(line (pt 0 1328)(pt 144 1328)(line_width 1))
)
(port
(pt 0 1344)
(bidir)
(text "slot_b_P13" (rect 0 0 43 12)(font "Arial" (font_size 8)))
(text "slot_b_P13" (rect 4 1333 64 1344)(font "Arial" (font_size 8)))
(line (pt 0 1344)(pt 144 1344)(line_width 1))
)
(port
(pt 0 1360)
(bidir)
(text "slot_b_P14" (rect 0 0 44 12)(font "Arial" (font_size 8)))
(text "slot_b_P14" (rect 4 1349 64 1360)(font "Arial" (font_size 8)))
(line (pt 0 1360)(pt 144 1360)(line_width 1))
)
(port
(pt 0 1376)
(bidir)
(text "slot_b_P15" (rect 0 0 43 12)(font "Arial" (font_size 8)))
(text "slot_b_P15" (rect 4 1365 64 1376)(font "Arial" (font_size 8)))
(line (pt 0 1376)(pt 144 1376)(line_width 1))
)
(port
(pt 0 1392)
(bidir)
(text "slot_b_P16" (rect 0 0 43 12)(font "Arial" (font_size 8)))
(text "slot_b_P16" (rect 4 1381 64 1392)(font "Arial" (font_size 8)))
(line (pt 0 1392)(pt 144 1392)(line_width 1))
)
(port
(pt 0 1408)
(bidir)
(text "slot_b_P17" (rect 0 0 43 12)(font "Arial" (font_size 8)))
(text "slot_b_P17" (rect 4 1397 64 1408)(font "Arial" (font_size 8)))
(line (pt 0 1408)(pt 144 1408)(line_width 1))
)
(port
(pt 0 1424)
(bidir)
(text "slot_b_P18" (rect 0 0 43 12)(font "Arial" (font_size 8)))
(text "slot_b_P18" (rect 4 1413 64 1424)(font "Arial" (font_size 8)))
(line (pt 0 1424)(pt 144 1424)(line_width 1))
)
(port
(pt 0 1440)
(bidir)
(text "slot_b_P19" (rect 0 0 43 12)(font "Arial" (font_size 8)))
(text "slot_b_P19" (rect 4 1429 64 1440)(font "Arial" (font_size 8)))
(line (pt 0 1440)(pt 144 1440)(line_width 1))
)
(port
(pt 0 1456)
(bidir)
(text "slot_b_P20" (rect 0 0 44 12)(font "Arial" (font_size 8)))
(text "slot_b_P20" (rect 4 1445 64 1456)(font "Arial" (font_size 8)))
(line (pt 0 1456)(pt 144 1456)(line_width 1))
)
(port
(pt 0 1472)
(bidir)
(text "slot_b_P21" (rect 0 0 43 12)(font "Arial" (font_size 8)))
(text "slot_b_P21" (rect 4 1461 64 1472)(font "Arial" (font_size 8)))
(line (pt 0 1472)(pt 144 1472)(line_width 1))
)
(port
(pt 0 1488)
(bidir)
(text "slot_b_P22" (rect 0 0 44 12)(font "Arial" (font_size 8)))
(text "slot_b_P22" (rect 4 1477 64 1488)(font "Arial" (font_size 8)))
(line (pt 0 1488)(pt 144 1488)(line_width 1))
)
(port
(pt 0 1504)
(bidir)
(text "slot_b_P23" (rect 0 0 44 12)(font "Arial" (font_size 8)))
(text "slot_b_P23" (rect 4 1493 64 1504)(font "Arial" (font_size 8)))
(line (pt 0 1504)(pt 144 1504)(line_width 1))
)
(port
(pt 0 1520)
(bidir)
(text "slot_b_P24" (rect 0 0 46 12)(font "Arial" (font_size 8)))
(text "slot_b_P24" (rect 4 1509 64 1520)(font "Arial" (font_size 8)))
(line (pt 0 1520)(pt 144 1520)(line_width 1))
)
(port
(pt 0 1536)
(bidir)
(text "slot_b_P25" (rect 0 0 44 12)(font "Arial" (font_size 8)))
(text "slot_b_P25" (rect 4 1525 64 1536)(font "Arial" (font_size 8)))
(line (pt 0 1536)(pt 144 1536)(line_width 1))
)
(port
(pt 0 2712)
(bidir)
(text "am2301_0_sda" (rect 0 0 61 12)(font "Arial" (font_size 8)))
(text "am2301_0_sda" (rect 4 2701 76 2712)(font "Arial" (font_size 8)))
(line (pt 0 2712)(pt 144 2712)(line_width 1))
)
(port
(pt 0 2768)
(bidir)
(text "am2301_1_sda" (rect 0 0 60 12)(font "Arial" (font_size 8)))
(text "am2301_1_sda" (rect 4 2757 76 2768)(font "Arial" (font_size 8)))
(line (pt 0 2768)(pt 144 2768)(line_width 1))
)
(drawing
(text "m0" (rect 127 43 266 99)(font "Arial" (color 128 0 0)(font_size 9)))
(text "RSTN" (rect 149 67 322 144)(font "Arial" (color 0 0 0)))
(text "CLK" (rect 149 83 316 176)(font "Arial" (color 0 0 0)))
(text "ADDR" (rect 149 99 322 208)(font "Arial" (color 0 0 0)))
(text "DATA" (rect 149 115 322 240)(font "Arial" (color 0 0 0)))
(text "CSN" (rect 149 131 316 272)(font "Arial" (color 0 0 0)))
(text "BEN" (rect 149 147 316 304)(font "Arial" (color 0 0 0)))
(text "RDN" (rect 149 163 316 336)(font "Arial" (color 0 0 0)))