-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfrontier.bsf
More file actions
1003 lines (1003 loc) · 39.1 KB
/
frontier.bsf
File metadata and controls
1003 lines (1003 loc) · 39.1 KB
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 336 2608)
(text "frontier" (rect 147 -1 175 11)(font "Arial" (font_size 10)))
(text "inst" (rect 8 2592 20 2604)(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 128 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 128 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 128 104)(line_width 3))
)
(port
(pt 0 136)
(input)
(text "m0_CSN[3..0]" (rect 0 0 59 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 128 136)(line_width 3))
)
(port
(pt 0 152)
(input)
(text "m0_BEN[3..0]" (rect 0 0 59 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 128 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 128 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 128 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 128 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 128 608)(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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 1576)(line_width 1))
)
(port
(pt 0 1616)
(output)
(text "pwm_c1_export" (rect 0 0 63 12)(font "Arial" (font_size 8)))
(text "pwm_c1_export" (rect 4 1605 82 1616)(font "Arial" (font_size 8)))
(line (pt 0 1616)(pt 128 1616)(line_width 1))
)
(port
(pt 0 1656)
(output)
(text "pwm_c2_export" (rect 0 0 64 12)(font "Arial" (font_size 8)))
(text "pwm_c2_export" (rect 4 1645 82 1656)(font "Arial" (font_size 8)))
(line (pt 0 1656)(pt 128 1656)(line_width 1))
)
(port
(pt 0 1696)
(output)
(text "pwm_c3_export" (rect 0 0 64 12)(font "Arial" (font_size 8)))
(text "pwm_c3_export" (rect 4 1685 82 1696)(font "Arial" (font_size 8)))
(line (pt 0 1696)(pt 128 1696)(line_width 1))
)
(port
(pt 0 1736)
(output)
(text "pwm_c4_export" (rect 0 0 66 12)(font "Arial" (font_size 8)))
(text "pwm_c4_export" (rect 4 1725 82 1736)(font "Arial" (font_size 8)))
(line (pt 0 1736)(pt 128 1736)(line_width 1))
)
(port
(pt 0 1776)
(output)
(text "pwm_c5_export" (rect 0 0 64 12)(font "Arial" (font_size 8)))
(text "pwm_c5_export" (rect 4 1765 82 1776)(font "Arial" (font_size 8)))
(line (pt 0 1776)(pt 128 1776)(line_width 1))
)
(port
(pt 0 1816)
(output)
(text "pwm_c6_export" (rect 0 0 64 12)(font "Arial" (font_size 8)))
(text "pwm_c6_export" (rect 4 1805 82 1816)(font "Arial" (font_size 8)))
(line (pt 0 1816)(pt 128 1816)(line_width 1))
)
(port
(pt 0 1856)
(output)
(text "pwm_c7_export" (rect 0 0 64 12)(font "Arial" (font_size 8)))
(text "pwm_c7_export" (rect 4 1845 82 1856)(font "Arial" (font_size 8)))
(line (pt 0 1856)(pt 128 1856)(line_width 1))
)
(port
(pt 0 1896)
(output)
(text "pwm_c8_export" (rect 0 0 64 12)(font "Arial" (font_size 8)))
(text "pwm_c8_export" (rect 4 1885 82 1896)(font "Arial" (font_size 8)))
(line (pt 0 1896)(pt 128 1896)(line_width 1))
)
(port
(pt 0 1936)
(output)
(text "pwm_c9_export" (rect 0 0 64 12)(font "Arial" (font_size 8)))
(text "pwm_c9_export" (rect 4 1925 82 1936)(font "Arial" (font_size 8)))
(line (pt 0 1936)(pt 128 1936)(line_width 1))
)
(port
(pt 0 1976)
(output)
(text "pwm_c10_export" (rect 0 0 68 12)(font "Arial" (font_size 8)))
(text "pwm_c10_export" (rect 4 1965 88 1976)(font "Arial" (font_size 8)))
(line (pt 0 1976)(pt 128 1976)(line_width 1))
)
(port
(pt 0 2016)
(output)
(text "pwm_c11_export" (rect 0 0 67 12)(font "Arial" (font_size 8)))
(text "pwm_c11_export" (rect 4 2005 88 2016)(font "Arial" (font_size 8)))
(line (pt 0 2016)(pt 128 2016)(line_width 1))
)
(port
(pt 0 2056)
(output)
(text "pwm_c12_export" (rect 0 0 68 12)(font "Arial" (font_size 8)))
(text "pwm_c12_export" (rect 4 2045 88 2056)(font "Arial" (font_size 8)))
(line (pt 0 2056)(pt 128 2056)(line_width 1))
)
(port
(pt 0 2096)
(output)
(text "pwm_c13_export" (rect 0 0 68 12)(font "Arial" (font_size 8)))
(text "pwm_c13_export" (rect 4 2085 88 2096)(font "Arial" (font_size 8)))
(line (pt 0 2096)(pt 128 2096)(line_width 1))
)
(port
(pt 0 2136)
(output)
(text "pwm_c14_export" (rect 0 0 69 12)(font "Arial" (font_size 8)))
(text "pwm_c14_export" (rect 4 2125 88 2136)(font "Arial" (font_size 8)))
(line (pt 0 2136)(pt 128 2136)(line_width 1))
)
(port
(pt 0 2176)
(output)
(text "pwm_c15_export" (rect 0 0 68 12)(font "Arial" (font_size 8)))
(text "pwm_c15_export" (rect 4 2165 88 2176)(font "Arial" (font_size 8)))
(line (pt 0 2176)(pt 128 2176)(line_width 1))
)
(port
(pt 0 2216)
(output)
(text "pwm_c16_export" (rect 0 0 68 12)(font "Arial" (font_size 8)))
(text "pwm_c16_export" (rect 4 2205 88 2216)(font "Arial" (font_size 8)))
(line (pt 0 2216)(pt 128 2216)(line_width 1))
)
(port
(pt 0 2256)
(output)
(text "pwm_c17_export" (rect 0 0 68 12)(font "Arial" (font_size 8)))
(text "pwm_c17_export" (rect 4 2245 88 2256)(font "Arial" (font_size 8)))
(line (pt 0 2256)(pt 128 2256)(line_width 1))
)
(port
(pt 0 2296)
(output)
(text "pwm_c18_export" (rect 0 0 68 12)(font "Arial" (font_size 8)))
(text "pwm_c18_export" (rect 4 2285 88 2296)(font "Arial" (font_size 8)))
(line (pt 0 2296)(pt 128 2296)(line_width 1))
)
(port
(pt 0 2336)
(output)
(text "pwm_c19_export" (rect 0 0 68 12)(font "Arial" (font_size 8)))
(text "pwm_c19_export" (rect 4 2325 88 2336)(font "Arial" (font_size 8)))
(line (pt 0 2336)(pt 128 2336)(line_width 1))
)
(port
(pt 0 2376)
(output)
(text "pwm_c20_export" (rect 0 0 69 12)(font "Arial" (font_size 8)))
(text "pwm_c20_export" (rect 4 2365 88 2376)(font "Arial" (font_size 8)))
(line (pt 0 2376)(pt 128 2376)(line_width 1))
)
(port
(pt 0 2416)
(output)
(text "pwm_c21_export" (rect 0 0 68 12)(font "Arial" (font_size 8)))
(text "pwm_c21_export" (rect 4 2405 88 2416)(font "Arial" (font_size 8)))
(line (pt 0 2416)(pt 128 2416)(line_width 1))
)
(port
(pt 0 2456)
(output)
(text "pwm_c22_export" (rect 0 0 69 12)(font "Arial" (font_size 8)))
(text "pwm_c22_export" (rect 4 2445 88 2456)(font "Arial" (font_size 8)))
(line (pt 0 2456)(pt 128 2456)(line_width 1))
)
(port
(pt 0 2496)
(output)
(text "pwm_c23_export" (rect 0 0 69 12)(font "Arial" (font_size 8)))
(text "pwm_c23_export" (rect 4 2485 88 2496)(font "Arial" (font_size 8)))
(line (pt 0 2496)(pt 128 2496)(line_width 1))
)
(port
(pt 0 2536)
(output)
(text "pwm_c24_export" (rect 0 0 70 12)(font "Arial" (font_size 8)))
(text "pwm_c24_export" (rect 4 2525 88 2536)(font "Arial" (font_size 8)))
(line (pt 0 2536)(pt 128 2536)(line_width 1))
)
(port
(pt 0 2576)
(output)
(text "pwm_c25_export" (rect 0 0 69 12)(font "Arial" (font_size 8)))
(text "pwm_c25_export" (rect 4 2565 88 2576)(font "Arial" (font_size 8)))
(line (pt 0 2576)(pt 128 2576)(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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 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 128 1536)(line_width 1))
)
(drawing
(text "m0" (rect 111 43 234 99)(font "Arial" (color 128 0 0)(font_size 9)))
(text "RSTN" (rect 133 67 290 144)(font "Arial" (color 0 0 0)))
(text "CLK" (rect 133 83 284 176)(font "Arial" (color 0 0 0)))
(text "ADDR" (rect 133 99 290 208)(font "Arial" (color 0 0 0)))
(text "DATA" (rect 133 115 290 240)(font "Arial" (color 0 0 0)))
(text "CSN" (rect 133 131 284 272)(font "Arial" (color 0 0 0)))
(text "BEN" (rect 133 147 284 304)(font "Arial" (color 0 0 0)))
(text "RDN" (rect 133 163 284 336)(font "Arial" (color 0 0 0)))
(text "WRN" (rect 133 179 284 368)(font "Arial" (color 0 0 0)))
(text "WAITN" (rect 133 195 296 400)(font "Arial" (color 0 0 0)))
(text "EINT" (rect 133 211 290 432)(font "Arial" (color 0 0 0)))
(text "led_f0" (rect 92 227 220 467)(font "Arial" (color 128 0 0)(font_size 9)))
(text "R" (rect 133 251 272 512)(font "Arial" (color 0 0 0)))
(text "G" (rect 133 267 272 544)(font "Arial" (color 0 0 0)))
(text "B" (rect 133 283 272 576)(font "Arial" (color 0 0 0)))
(text "led_f1" (rect 94 299 224 611)(font "Arial" (color 128 0 0)(font_size 9)))
(text "R" (rect 133 323 272 656)(font "Arial" (color 0 0 0)))
(text "G" (rect 133 339 272 688)(font "Arial" (color 0 0 0)))
(text "B" (rect 133 355 272 720)(font "Arial" (color 0 0 0)))
(text "led_f2" (rect 92 371 220 755)(font "Arial" (color 128 0 0)(font_size 9)))
(text "R" (rect 133 395 272 800)(font "Arial" (color 0 0 0)))
(text "G" (rect 133 411 272 832)(font "Arial" (color 0 0 0)))
(text "B" (rect 133 427 272 864)(font "Arial" (color 0 0 0)))
(text "led_f3" (rect 92 443 220 899)(font "Arial" (color 128 0 0)(font_size 9)))
(text "R" (rect 133 467 272 944)(font "Arial" (color 0 0 0)))
(text "G" (rect 133 483 272 976)(font "Arial" (color 0 0 0)))
(text "B" (rect 133 499 272 1008)(font "Arial" (color 0 0 0)))
(text "shield_ctrl" (rect 69 515 204 1043)(font "Arial" (color 128 0 0)(font_size 9)))
(text "A_OCN" (rect 133 539 296 1088)(font "Arial" (color 0 0 0)))
(text "A_PWREN" (rect 133 555 308 1120)(font "Arial" (color 0 0 0)))
(text "A_HOE" (rect 133 571 296 1152)(font "Arial" (color 0 0 0)))
(text "A_LOE" (rect 133 587 296 1184)(font "Arial" (color 0 0 0)))
(text "B_OCN" (rect 133 603 296 1216)(font "Arial" (color 0 0 0)))
(text "B_PWREN" (rect 133 619 308 1248)(font "Arial" (color 0 0 0)))
(text "B_HOE" (rect 133 635 296 1280)(font "Arial" (color 0 0 0)))
(text "B_LOE" (rect 133 651 296 1312)(font "Arial" (color 0 0 0)))
(text "slot_a" (rect 93 667 222 1347)(font "Arial" (color 128 0 0)(font_size 9)))
(text "P0" (rect 133 691 278 1392)(font "Arial" (color 0 0 0)))
(text "P1" (rect 133 707 278 1424)(font "Arial" (color 0 0 0)))
(text "P2" (rect 133 723 278 1456)(font "Arial" (color 0 0 0)))
(text "P3" (rect 133 739 278 1488)(font "Arial" (color 0 0 0)))
(text "P4" (rect 133 755 278 1520)(font "Arial" (color 0 0 0)))
(text "P5" (rect 133 771 278 1552)(font "Arial" (color 0 0 0)))
(text "P6" (rect 133 787 278 1584)(font "Arial" (color 0 0 0)))
(text "P7" (rect 133 803 278 1616)(font "Arial" (color 0 0 0)))
(text "P8" (rect 133 819 278 1648)(font "Arial" (color 0 0 0)))
(text "P9" (rect 133 835 278 1680)(font "Arial" (color 0 0 0)))
(text "P10" (rect 133 851 284 1712)(font "Arial" (color 0 0 0)))
(text "P11" (rect 133 867 284 1744)(font "Arial" (color 0 0 0)))
(text "P12" (rect 133 883 284 1776)(font "Arial" (color 0 0 0)))
(text "P13" (rect 133 899 284 1808)(font "Arial" (color 0 0 0)))
(text "P14" (rect 133 915 284 1840)(font "Arial" (color 0 0 0)))
(text "P15" (rect 133 931 284 1872)(font "Arial" (color 0 0 0)))
(text "P16" (rect 133 947 284 1904)(font "Arial" (color 0 0 0)))
(text "P17" (rect 133 963 284 1936)(font "Arial" (color 0 0 0)))
(text "P18" (rect 133 979 284 1968)(font "Arial" (color 0 0 0)))
(text "P19" (rect 133 995 284 2000)(font "Arial" (color 0 0 0)))
(text "P20" (rect 133 1011 284 2032)(font "Arial" (color 0 0 0)))
(text "P21" (rect 133 1027 284 2064)(font "Arial" (color 0 0 0)))
(text "P22" (rect 133 1043 284 2096)(font "Arial" (color 0 0 0)))
(text "P23" (rect 133 1059 284 2128)(font "Arial" (color 0 0 0)))
(text "P24" (rect 133 1075 284 2160)(font "Arial" (color 0 0 0)))
(text "P25" (rect 133 1091 284 2192)(font "Arial" (color 0 0 0)))
(text "slot_b" (rect 93 1107 222 2227)(font "Arial" (color 128 0 0)(font_size 9)))
(text "P0" (rect 133 1131 278 2272)(font "Arial" (color 0 0 0)))
(text "P1" (rect 133 1147 278 2304)(font "Arial" (color 0 0 0)))
(text "P2" (rect 133 1163 278 2336)(font "Arial" (color 0 0 0)))
(text "P3" (rect 133 1179 278 2368)(font "Arial" (color 0 0 0)))
(text "P4" (rect 133 1195 278 2400)(font "Arial" (color 0 0 0)))
(text "P5" (rect 133 1211 278 2432)(font "Arial" (color 0 0 0)))
(text "P6" (rect 133 1227 278 2464)(font "Arial" (color 0 0 0)))
(text "P7" (rect 133 1243 278 2496)(font "Arial" (color 0 0 0)))
(text "P8" (rect 133 1259 278 2528)(font "Arial" (color 0 0 0)))
(text "P9" (rect 133 1275 278 2560)(font "Arial" (color 0 0 0)))
(text "P10" (rect 133 1291 284 2592)(font "Arial" (color 0 0 0)))
(text "P11" (rect 133 1307 284 2624)(font "Arial" (color 0 0 0)))
(text "P12" (rect 133 1323 284 2656)(font "Arial" (color 0 0 0)))
(text "P13" (rect 133 1339 284 2688)(font "Arial" (color 0 0 0)))
(text "P14" (rect 133 1355 284 2720)(font "Arial" (color 0 0 0)))
(text "P15" (rect 133 1371 284 2752)(font "Arial" (color 0 0 0)))
(text "P16" (rect 133 1387 284 2784)(font "Arial" (color 0 0 0)))
(text "P17" (rect 133 1403 284 2816)(font "Arial" (color 0 0 0)))
(text "P18" (rect 133 1419 284 2848)(font "Arial" (color 0 0 0)))
(text "P19" (rect 133 1435 284 2880)(font "Arial" (color 0 0 0)))
(text "P20" (rect 133 1451 284 2912)(font "Arial" (color 0 0 0)))
(text "P21" (rect 133 1467 284 2944)(font "Arial" (color 0 0 0)))
(text "P22" (rect 133 1483 284 2976)(font "Arial" (color 0 0 0)))
(text "P23" (rect 133 1499 284 3008)(font "Arial" (color 0 0 0)))
(text "P24" (rect 133 1515 284 3040)(font "Arial" (color 0 0 0)))
(text "P25" (rect 133 1531 284 3072)(font "Arial" (color 0 0 0)))
(text "pwm_c0" (rect 80 1547 196 3107)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 1571 302 3152)(font "Arial" (color 0 0 0)))
(text "pwm_c1" (rect 82 1587 200 3187)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 1611 302 3232)(font "Arial" (color 0 0 0)))
(text "pwm_c2" (rect 80 1627 196 3267)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 1651 302 3312)(font "Arial" (color 0 0 0)))
(text "pwm_c3" (rect 80 1667 196 3347)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 1691 302 3392)(font "Arial" (color 0 0 0)))
(text "pwm_c4" (rect 80 1707 196 3427)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 1731 302 3472)(font "Arial" (color 0 0 0)))
(text "pwm_c5" (rect 80 1747 196 3507)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 1771 302 3552)(font "Arial" (color 0 0 0)))
(text "pwm_c6" (rect 80 1787 196 3587)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 1811 302 3632)(font "Arial" (color 0 0 0)))
(text "pwm_c7" (rect 80 1827 196 3667)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 1851 302 3712)(font "Arial" (color 0 0 0)))
(text "pwm_c8" (rect 80 1867 196 3747)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 1891 302 3792)(font "Arial" (color 0 0 0)))
(text "pwm_c9" (rect 80 1907 196 3827)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 1931 302 3872)(font "Arial" (color 0 0 0)))
(text "pwm_c10" (rect 75 1947 192 3907)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 1971 302 3952)(font "Arial" (color 0 0 0)))
(text "pwm_c11" (rect 77 1987 196 3987)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 2011 302 4032)(font "Arial" (color 0 0 0)))
(text "pwm_c12" (rect 75 2027 192 4067)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 2051 302 4112)(font "Arial" (color 0 0 0)))
(text "pwm_c13" (rect 75 2067 192 4147)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 2091 302 4192)(font "Arial" (color 0 0 0)))
(text "pwm_c14" (rect 75 2107 192 4227)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 2131 302 4272)(font "Arial" (color 0 0 0)))
(text "pwm_c15" (rect 75 2147 192 4307)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 2171 302 4352)(font "Arial" (color 0 0 0)))
(text "pwm_c16" (rect 75 2187 192 4387)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 2211 302 4432)(font "Arial" (color 0 0 0)))
(text "pwm_c17" (rect 75 2227 192 4467)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 2251 302 4512)(font "Arial" (color 0 0 0)))
(text "pwm_c18" (rect 75 2267 192 4547)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 2291 302 4592)(font "Arial" (color 0 0 0)))
(text "pwm_c19" (rect 75 2307 192 4627)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 2331 302 4672)(font "Arial" (color 0 0 0)))
(text "pwm_c20" (rect 73 2347 188 4707)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 2371 302 4752)(font "Arial" (color 0 0 0)))
(text "pwm_c21" (rect 75 2387 192 4787)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 2411 302 4832)(font "Arial" (color 0 0 0)))
(text "pwm_c22" (rect 73 2427 188 4867)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 2451 302 4912)(font "Arial" (color 0 0 0)))
(text "pwm_c23" (rect 73 2467 188 4947)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 2491 302 4992)(font "Arial" (color 0 0 0)))
(text "pwm_c24" (rect 73 2507 188 5027)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 2531 302 5072)(font "Arial" (color 0 0 0)))
(text "pwm_c25" (rect 73 2547 188 5107)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 2571 302 5152)(font "Arial" (color 0 0 0)))
(text " frontier " (rect 301 2592 662 5194)(font "Arial" ))
(line (pt 129 52)(pt 129 220)(line_width 1))
(line (pt 130 52)(pt 130 220)(line_width 1))
(line (pt 129 236)(pt 129 292)(line_width 1))
(line (pt 130 236)(pt 130 292)(line_width 1))
(line (pt 129 308)(pt 129 364)(line_width 1))
(line (pt 130 308)(pt 130 364)(line_width 1))
(line (pt 129 380)(pt 129 436)(line_width 1))
(line (pt 130 380)(pt 130 436)(line_width 1))
(line (pt 129 452)(pt 129 508)(line_width 1))
(line (pt 130 452)(pt 130 508)(line_width 1))
(line (pt 129 524)(pt 129 660)(line_width 1))
(line (pt 130 524)(pt 130 660)(line_width 1))
(line (pt 129 676)(pt 129 1100)(line_width 1))
(line (pt 130 676)(pt 130 1100)(line_width 1))
(line (pt 129 1116)(pt 129 1540)(line_width 1))
(line (pt 130 1116)(pt 130 1540)(line_width 1))
(line (pt 129 1556)(pt 129 1580)(line_width 1))
(line (pt 130 1556)(pt 130 1580)(line_width 1))
(line (pt 129 1596)(pt 129 1620)(line_width 1))
(line (pt 130 1596)(pt 130 1620)(line_width 1))
(line (pt 129 1636)(pt 129 1660)(line_width 1))
(line (pt 130 1636)(pt 130 1660)(line_width 1))
(line (pt 129 1676)(pt 129 1700)(line_width 1))
(line (pt 130 1676)(pt 130 1700)(line_width 1))
(line (pt 129 1716)(pt 129 1740)(line_width 1))
(line (pt 130 1716)(pt 130 1740)(line_width 1))
(line (pt 129 1756)(pt 129 1780)(line_width 1))
(line (pt 130 1756)(pt 130 1780)(line_width 1))
(line (pt 129 1796)(pt 129 1820)(line_width 1))
(line (pt 130 1796)(pt 130 1820)(line_width 1))
(line (pt 129 1836)(pt 129 1860)(line_width 1))
(line (pt 130 1836)(pt 130 1860)(line_width 1))
(line (pt 129 1876)(pt 129 1900)(line_width 1))
(line (pt 130 1876)(pt 130 1900)(line_width 1))
(line (pt 129 1916)(pt 129 1940)(line_width 1))
(line (pt 130 1916)(pt 130 1940)(line_width 1))
(line (pt 129 1956)(pt 129 1980)(line_width 1))
(line (pt 130 1956)(pt 130 1980)(line_width 1))
(line (pt 129 1996)(pt 129 2020)(line_width 1))
(line (pt 130 1996)(pt 130 2020)(line_width 1))
(line (pt 129 2036)(pt 129 2060)(line_width 1))
(line (pt 130 2036)(pt 130 2060)(line_width 1))
(line (pt 129 2076)(pt 129 2100)(line_width 1))
(line (pt 130 2076)(pt 130 2100)(line_width 1))
(line (pt 129 2116)(pt 129 2140)(line_width 1))
(line (pt 130 2116)(pt 130 2140)(line_width 1))
(line (pt 129 2156)(pt 129 2180)(line_width 1))
(line (pt 130 2156)(pt 130 2180)(line_width 1))
(line (pt 129 2196)(pt 129 2220)(line_width 1))
(line (pt 130 2196)(pt 130 2220)(line_width 1))
(line (pt 129 2236)(pt 129 2260)(line_width 1))
(line (pt 130 2236)(pt 130 2260)(line_width 1))
(line (pt 129 2276)(pt 129 2300)(line_width 1))
(line (pt 130 2276)(pt 130 2300)(line_width 1))
(line (pt 129 2316)(pt 129 2340)(line_width 1))
(line (pt 130 2316)(pt 130 2340)(line_width 1))
(line (pt 129 2356)(pt 129 2380)(line_width 1))
(line (pt 130 2356)(pt 130 2380)(line_width 1))
(line (pt 129 2396)(pt 129 2420)(line_width 1))
(line (pt 130 2396)(pt 130 2420)(line_width 1))
(line (pt 129 2436)(pt 129 2460)(line_width 1))
(line (pt 130 2436)(pt 130 2460)(line_width 1))
(line (pt 129 2476)(pt 129 2500)(line_width 1))
(line (pt 130 2476)(pt 130 2500)(line_width 1))
(line (pt 129 2516)(pt 129 2540)(line_width 1))
(line (pt 130 2516)(pt 130 2540)(line_width 1))
(line (pt 129 2556)(pt 129 2580)(line_width 1))
(line (pt 130 2556)(pt 130 2580)(line_width 1))
(line (pt 128 32)(pt 208 32)(line_width 1))
(line (pt 208 32)(pt 208 2592)(line_width 1))
(line (pt 128 2592)(pt 208 2592)(line_width 1))
(line (pt 128 32)(pt 128 2592)(line_width 1))
(line (pt 0 0)(pt 336 0)(line_width 1))
(line (pt 336 0)(pt 336 2608)(line_width 1))
(line (pt 0 2608)(pt 336 2608)(line_width 1))