-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathARP.bdf
1184 lines (1184 loc) · 27.7 KB
/
ARP.bdf
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-2013 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 "graphic" (version "1.4"))
(properties
(page_setup "orientation\n0\npaper_size\n0\npaper_source\n12\nmargin\n0.200:0.200:0.200:0.200\n")
)
(pin
(input)
(rect 248 632 416 648)
(text "INPUT" (rect 125 0 153 10)(font "Arial" (font_size 6)))
(text "PS2_KBCLK" (rect 5 0 66 12)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 84 12)(pt 109 12))
(line (pt 84 4)(pt 109 4))
(line (pt 113 8)(pt 168 8))
(line (pt 84 12)(pt 84 4))
(line (pt 109 4)(pt 113 8))
(line (pt 109 12)(pt 113 8))
)
(text "GND" (rect 128 7 149 17)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 184 632 248 648))
)
(pin
(input)
(rect 248 648 416 664)
(text "INPUT" (rect 125 0 153 10)(font "Arial" (font_size 6)))
(text "PS2_KBDAT" (rect 5 0 66 12)(font "Arial" ))
(pt 168 8)
(drawing
(line (pt 84 12)(pt 109 12))
(line (pt 84 4)(pt 109 4))
(line (pt 113 8)(pt 168 8))
(line (pt 84 12)(pt 84 4))
(line (pt 109 4)(pt 113 8))
(line (pt 109 12)(pt 113 8))
)
(text "GND" (rect 128 7 149 17)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 184 648 248 664))
)
(pin
(input)
(rect 240 552 416 568)
(text "INPUT" (rect 133 0 161 10)(font "Arial" (font_size 6)))
(text "CLK" (rect 9 0 30 12)(font "Arial" ))
(pt 176 8)
(drawing
(line (pt 92 12)(pt 117 12))
(line (pt 92 4)(pt 117 4))
(line (pt 121 8)(pt 176 8))
(line (pt 92 12)(pt 92 4))
(line (pt 117 4)(pt 121 8))
(line (pt 117 12)(pt 121 8))
)
(text "GND" (rect 136 7 157 17)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 184 552 240 568))
)
(pin
(input)
(rect 240 536 416 552)
(text "INPUT" (rect 133 0 161 10)(font "Arial" (font_size 6)))
(text "BTN[2..0]" (rect 9 0 56 12)(font "Arial" ))
(pt 176 8)
(drawing
(line (pt 92 12)(pt 117 12))
(line (pt 92 4)(pt 117 4))
(line (pt 121 8)(pt 176 8))
(line (pt 92 12)(pt 92 4))
(line (pt 117 4)(pt 121 8))
(line (pt 117 12)(pt 121 8))
)
(text "GND" (rect 136 7 157 17)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 184 536 240 552))
)
(pin
(input)
(rect 240 520 416 536)
(text "INPUT" (rect 133 0 161 10)(font "Arial" (font_size 6)))
(text "SW[9..0]" (rect 9 0 52 12)(font "Arial" ))
(pt 176 8)
(drawing
(line (pt 92 12)(pt 117 12))
(line (pt 92 4)(pt 117 4))
(line (pt 121 8)(pt 176 8))
(line (pt 92 12)(pt 92 4))
(line (pt 117 4)(pt 121 8))
(line (pt 117 12)(pt 121 8))
)
(text "GND" (rect 136 7 157 17)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 184 520 240 536))
)
(pin
(output)
(rect 1008 632 1184 648)
(text "OUTPUT" (rect 1 0 39 10)(font "Arial" (font_size 6)))
(text "VGA_R[3..0]" (rect 90 0 152 12)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1184 632 1240 648))
)
(pin
(output)
(rect 1008 648 1184 664)
(text "OUTPUT" (rect 1 0 39 10)(font "Arial" (font_size 6)))
(text "VGA_G[3..0]" (rect 90 0 152 12)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1184 648 1240 664))
)
(pin
(output)
(rect 1008 664 1184 680)
(text "OUTPUT" (rect 1 0 39 10)(font "Arial" (font_size 6)))
(text "VGA_B[3..0]" (rect 90 0 151 12)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1184 664 1240 680))
)
(pin
(output)
(rect 1008 680 1184 696)
(text "OUTPUT" (rect 1 0 39 10)(font "Arial" (font_size 6)))
(text "VGA_HS" (rect 90 0 133 12)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1184 680 1240 696))
)
(pin
(output)
(rect 1008 696 1184 712)
(text "OUTPUT" (rect 1 0 39 10)(font "Arial" (font_size 6)))
(text "VGA_VS" (rect 90 0 132 12)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1184 696 1240 712))
)
(pin
(output)
(rect 1008 448 1184 464)
(text "OUTPUT" (rect 1 0 39 10)(font "Arial" (font_size 6)))
(text "DRAM_BA_0" (rect 90 0 153 12)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1184 448 1240 464))
)
(pin
(output)
(rect 1008 464 1184 480)
(text "OUTPUT" (rect 1 0 39 10)(font "Arial" (font_size 6)))
(text "DRAM_BA_1" (rect 90 0 153 12)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1184 464 1240 480))
)
(pin
(output)
(rect 1008 480 1184 496)
(text "OUTPUT" (rect 1 0 39 10)(font "Arial" (font_size 6)))
(text "DRAM_LDQM" (rect 90 0 158 12)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1184 480 1240 496))
)
(pin
(output)
(rect 1008 496 1184 512)
(text "OUTPUT" (rect 1 0 39 10)(font "Arial" (font_size 6)))
(text "DRAM_UDQM" (rect 90 0 160 12)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1184 496 1240 512))
)
(pin
(output)
(rect 1008 512 1184 528)
(text "OUTPUT" (rect 1 0 39 10)(font "Arial" (font_size 6)))
(text "DRAM_WE_N" (rect 90 0 159 12)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1184 512 1240 528))
)
(pin
(output)
(rect 1008 528 1184 544)
(text "OUTPUT" (rect 1 0 39 10)(font "Arial" (font_size 6)))
(text "DRAM_CAS_N" (rect 90 0 164 12)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1184 528 1240 544))
)
(pin
(output)
(rect 1008 544 1184 560)
(text "OUTPUT" (rect 1 0 39 10)(font "Arial" (font_size 6)))
(text "DRAM_RAS_N" (rect 90 0 164 12)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1184 544 1240 560))
)
(pin
(output)
(rect 1008 560 1184 576)
(text "OUTPUT" (rect 1 0 39 10)(font "Arial" (font_size 6)))
(text "DRAM_CS_N" (rect 90 0 157 12)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1184 560 1240 576))
)
(pin
(output)
(rect 1008 576 1184 592)
(text "OUTPUT" (rect 1 0 39 10)(font "Arial" (font_size 6)))
(text "DRAM_CLK" (rect 90 0 149 12)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1184 576 1240 592))
)
(pin
(output)
(rect 1008 592 1184 608)
(text "OUTPUT" (rect 1 0 39 10)(font "Arial" (font_size 6)))
(text "DRAM_CKE" (rect 90 0 150 12)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1184 592 1240 608))
)
(pin
(output)
(rect 1008 416 1184 432)
(text "OUTPUT" (rect 1 0 39 10)(font "Arial" (font_size 6)))
(text "DRAM_ADDR[11..0]" (rect 90 0 191 12)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 0 8)(pt 52 8))
(line (pt 52 4)(pt 78 4))
(line (pt 52 12)(pt 78 12))
(line (pt 52 12)(pt 52 4))
(line (pt 78 4)(pt 82 8))
(line (pt 82 8)(pt 78 12))
(line (pt 78 12)(pt 82 8))
)
(annotation_block (location)(rect 1184 416 1240 432))
)
(pin
(output)
(rect 240 488 416 504)
(text "OUTPUT" (rect 137 0 175 10)(font "Arial" (font_size 6)))
(text "7SEG[31..0]" (rect 26 0 86 12)(font "Arial" ))
(pt 176 8)
(drawing
(line (pt 176 8)(pt 124 8))
(line (pt 124 4)(pt 98 4))
(line (pt 124 12)(pt 98 12))
(line (pt 124 12)(pt 124 4))
(line (pt 98 4)(pt 94 8))
(line (pt 94 8)(pt 98 12))
(line (pt 98 12)(pt 94 8))
)
(flipy)
(annotation_block (location)(rect 184 488 240 504))
)
(pin
(output)
(rect 240 504 416 520)
(text "OUTPUT" (rect 137 0 175 10)(font "Arial" (font_size 6)))
(text "LED[9..0]" (rect 39 0 86 12)(font "Arial" ))
(pt 176 8)
(drawing
(line (pt 176 8)(pt 124 8))
(line (pt 124 4)(pt 98 4))
(line (pt 124 12)(pt 98 12))
(line (pt 124 12)(pt 124 4))
(line (pt 98 4)(pt 94 8))
(line (pt 94 8)(pt 98 12))
(line (pt 98 12)(pt 94 8))
)
(flipy)
(annotation_block (location)(rect 184 504 240 520))
)
(pin
(bidir)
(rect 1008 432 1184 448)
(text "BIDIR" (rect 1 0 25 10)(font "Arial" (font_size 6)))
(text "DRAM_DQ[15..0]" (rect 90 0 176 12)(font "Arial" ))
(pt 0 8)
(drawing
(line (pt 56 4)(pt 78 4))
(line (pt 0 8)(pt 52 8))
(line (pt 56 12)(pt 78 12))
(line (pt 78 4)(pt 82 8))
(line (pt 78 12)(pt 82 8))
(line (pt 56 4)(pt 52 8))
(line (pt 52 8)(pt 56 12))
)
(text "GND" (rect 4 7 25 17)(font "Arial" (font_size 6)))
(annotation_block (location)(rect 1184 432 1240 448))
)
(symbol
(rect 760 216 992 376)
(text "sram_controller" (rect 5 0 93 14)(font "Arial" (font_size 8)))
(text "inst2" (rect 8 144 31 156)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "ABUS[31..0]" (rect 0 0 69 14)(font "Arial" (font_size 8)))
(text "ABUS[31..0]" (rect 21 27 90 41)(font "Arial" (font_size 8)))
(line (pt 0 32)(pt 16 32)(line_width 3))
)
(port
(pt 0 96)
(input)
(text "CLK" (rect 0 0 23 14)(font "Arial" (font_size 8)))
(text "CLK" (rect 21 91 44 105)(font "Arial" (font_size 8)))
(line (pt 0 96)(pt 16 96))
)
(port
(pt 0 80)
(input)
(text "WR" (rect 0 0 20 14)(font "Arial" (font_size 8)))
(text "WR" (rect 21 75 41 89)(font "Arial" (font_size 8)))
(line (pt 0 80)(pt 16 80))
)
(port
(pt 0 64)
(input)
(text "RD" (rect 0 0 16 14)(font "Arial" (font_size 8)))
(text "RD" (rect 21 59 37 73)(font "Arial" (font_size 8)))
(line (pt 0 64)(pt 16 64))
)
(port
(pt 0 112)
(input)
(text "LEN[1..0]" (rect 0 0 50 14)(font "Arial" (font_size 8)))
(text "LEN[1..0]" (rect 21 107 71 121)(font "Arial" (font_size 8)))
(line (pt 0 112)(pt 16 112)(line_width 3))
)
(port
(pt 0 48)
(bidir)
(text "DBUS[31..0]" (rect 0 0 68 14)(font "Arial" (font_size 8)))
(text "DBUS[31..0]" (rect 24 40 92 54)(font "Arial" (font_size 8)))
(line (pt 16 48)(pt 0 48)(line_width 3))
)
(drawing
(rectangle (rect 16 16 216 144))
)
)
(symbol
(rect 432 216 664 448)
(text "rv32i" (rect 1 1 29 15)(font "Arial" (font_size 8)))
(text "inst5" (rect 8 216 31 228)(font "Arial" ))
(port
(pt 232 96)
(input)
(text "CLK" (rect 40 8 63 22)(font "Arial" (font_size 8)))
(text "CLK" (rect 184 88 207 102)(font "Arial" (font_size 8)))
(line (pt 232 96)(pt 216 96))
)
(port
(pt 232 32)
(output)
(text "ABUS[31..0]" (rect 88 8 157 22)(font "Arial" (font_size 8)))
(text "ABUS[31..0]" (rect 142 27 211 41)(font "Arial" (font_size 8)))
(line (pt 232 32)(pt 216 32)(line_width 3))
)
(port
(pt 232 64)
(output)
(text "RD" (rect 88 8 104 22)(font "Arial" (font_size 8)))
(text "RD" (rect 195 59 211 73)(font "Arial" (font_size 8)))
(line (pt 232 64)(pt 216 64))
)
(port
(pt 232 80)
(output)
(text "WR" (rect 88 8 108 22)(font "Arial" (font_size 8)))
(text "WR" (rect 191 75 211 89)(font "Arial" (font_size 8)))
(line (pt 232 80)(pt 216 80))
)
(port
(pt 232 112)
(output)
(text "LEN[1..0]" (rect 88 8 138 22)(font "Arial" (font_size 8)))
(text "LEN[1..0]" (rect 161 107 211 121)(font "Arial" (font_size 8)))
(line (pt 232 112)(pt 216 112)(line_width 3))
)
(port
(pt 232 48)
(bidir)
(text "DBUS[31..0]" (rect 88 8 156 22)(font "Arial" (font_size 8)))
(text "DBUS[31..0]" (rect 143 43 211 57)(font "Arial" (font_size 8)))
(line (pt 232 48)(pt 216 48)(line_width 3))
)
(drawing
(rectangle (rect 16 16 216 216))
)
)
(symbol
(rect 432 464 664 592)
(text "dbgif" (rect 0 0 28 14)(font "Arial" (font_size 8)))
(text "inst1" (rect 8 112 31 124)(font "Arial" ))
(port
(pt 0 96)
(input)
(text "CLKIN" (rect 0 8 34 22)(font "Arial" (font_size 8)))
(text "CLKIN" (rect 24 88 58 102)(font "Arial" (font_size 8)))
(line (pt 0 96)(pt 16 96))
)
(port
(pt 0 80)
(input)
(text "BTN[2..0]" (rect 0 8 51 22)(font "Arial" (font_size 8)))
(text "BTN[2..0]" (rect 23 72 74 86)(font "Arial" (font_size 8)))
(line (pt 0 80)(pt 16 80)(line_width 3))
)
(port
(pt 0 64)
(input)
(text "SW[9..0]" (rect 0 8 48 22)(font "Arial" (font_size 8)))
(text "SW[9..0]" (rect 24 56 72 70)(font "Arial" (font_size 8)))
(line (pt 0 64)(pt 16 64)(line_width 3))
)
(port
(pt 232 32)
(input)
(text "ABUS[31..0]" (rect 40 8 109 22)(font "Arial" (font_size 8)))
(text "ABUS[31..0]" (rect 152 24 221 38)(font "Arial" (font_size 8)))
(line (pt 216 32)(pt 232 32)(line_width 3))
)
(port
(pt 232 48)
(input)
(text "DBUS[31..0]" (rect 40 8 108 22)(font "Arial" (font_size 8)))
(text "DBUS[31..0]" (rect 152 40 220 54)(font "Arial" (font_size 8)))
(line (pt 216 48)(pt 232 48)(line_width 3))
)
(port
(pt 232 64)
(input)
(text "RD" (rect 40 8 56 22)(font "Arial" (font_size 8)))
(text "RD" (rect 192 56 208 70)(font "Arial" (font_size 8)))
(line (pt 216 64)(pt 232 64))
)
(port
(pt 232 80)
(input)
(text "WR" (rect 40 8 60 22)(font "Arial" (font_size 8)))
(text "WR" (rect 192 72 212 86)(font "Arial" (font_size 8)))
(line (pt 216 80)(pt 232 80))
)
(port
(pt 232 96)
(output)
(text "CLKOUT" (rect 40 8 88 22)(font "Arial" (font_size 8)))
(text "CLKOUT" (rect 168 88 216 102)(font "Arial" (font_size 8)))
(line (pt 232 96)(pt 216 96))
)
(port
(pt 0 32)
(output)
(text "7SEG[31..0]" (rect 0 8 67 22)(font "Arial" (font_size 8)))
(text "7SEG[31..0]" (rect 23 24 90 38)(font "Arial" (font_size 8)))
(line (pt 0 32)(pt 16 32)(line_width 3))
)
(port
(pt 0 48)
(output)
(text "LED[9..0]" (rect 0 8 50 22)(font "Arial" (font_size 8)))
(text "LED[9..0]" (rect 23 40 73 54)(font "Arial" (font_size 8)))
(line (pt 0 48)(pt 16 48)(line_width 3))
)
(drawing
(rectangle (rect 16 16 216 112))
)
)
(symbol
(rect 432 608 664 736)
(text "ps2_controller" (rect 5 0 86 14)(font "Arial" (font_size 8)))
(text "inst3" (rect 8 112 31 124)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "PS2_KBCLK" (rect 0 0 69 14)(font "Arial" (font_size 8)))
(text "PS2_KBCLK" (rect 21 27 90 41)(font "Arial" (font_size 8)))
(line (pt 0 32)(pt 16 32))
)
(port
(pt 0 48)
(input)
(text "PS2_KBDAT" (rect 0 0 70 14)(font "Arial" (font_size 8)))
(text "PS2_KBDAT" (rect 21 43 91 57)(font "Arial" (font_size 8)))
(line (pt 0 48)(pt 16 48))
)
(port
(pt 232 32)
(input)
(text "ABUS[31..0]" (rect 40 0 109 14)(font "Arial" (font_size 8)))
(text "ABUS[31..0]" (rect 138 24 207 38)(font "Arial" (font_size 8)))
(line (pt 216 32)(pt 232 32)(line_width 3))
)
(port
(pt 232 64)
(input)
(text "RD" (rect 40 0 56 14)(font "Arial" (font_size 8)))
(text "RD" (rect 191 56 207 70)(font "Arial" (font_size 8)))
(line (pt 216 64)(pt 232 64))
)
(port
(pt 232 80)
(input)
(text "WR" (rect 40 0 60 14)(font "Arial" (font_size 8)))
(text "WR" (rect 187 72 207 86)(font "Arial" (font_size 8)))
(line (pt 216 80)(pt 232 80))
)
(port
(pt 232 96)
(input)
(text "CLK" (rect 40 0 63 14)(font "Arial" (font_size 8)))
(text "CLK" (rect 184 88 207 102)(font "Arial" (font_size 8)))
(line (pt 216 96)(pt 232 96))
)
(port
(pt 232 48)
(output)
(text "DBUS[31..0]" (rect 40 0 108 14)(font "Arial" (font_size 8)))
(text "DBUS[31..0]" (rect 143 43 211 57)(font "Arial" (font_size 8)))
(line (pt 232 48)(pt 216 48)(line_width 3))
)
(drawing
(rectangle (rect 16 16 216 112))
)
)
(symbol
(rect 760 392 992 736)
(text "gpu" (rect 5 0 26 14)(font "Arial" (font_size 8)))
(text "inst" (rect 8 328 25 340)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "ABUS[31..0]" (rect 0 0 69 14)(font "Arial" (font_size 8)))
(text "ABUS[31..0]" (rect 21 27 90 41)(font "Arial" (font_size 8)))
(line (pt 0 32)(pt 16 32)(line_width 3))
)
(port
(pt 0 48)
(input)
(text "DBUS[31..0]" (rect 0 0 68 14)(font "Arial" (font_size 8)))
(text "DBUS[31..0]" (rect 21 43 89 57)(font "Arial" (font_size 8)))
(line (pt 0 48)(pt 16 48)(line_width 3))
)
(port
(pt 0 64)
(input)
(text "RD" (rect 0 0 16 14)(font "Arial" (font_size 8)))
(text "RD" (rect 21 59 37 73)(font "Arial" (font_size 8)))
(line (pt 0 64)(pt 16 64))
)
(port
(pt 0 80)
(input)
(text "WR" (rect 0 0 20 14)(font "Arial" (font_size 8)))
(text "WR" (rect 21 75 41 89)(font "Arial" (font_size 8)))
(line (pt 0 80)(pt 16 80))
)
(port
(pt 0 96)
(input)
(text "CLK" (rect 0 0 23 14)(font "Arial" (font_size 8)))
(text "CLK" (rect 21 91 44 105)(font "Arial" (font_size 8)))
(line (pt 0 96)(pt 16 96))
)
(port
(pt 232 64)
(output)
(text "DRAM_BA_0" (rect 0 0 74 14)(font "Arial" (font_size 8)))
(text "DRAM_BA_0" (rect 137 59 211 73)(font "Arial" (font_size 8)))
(line (pt 232 64)(pt 216 64))
)
(port
(pt 232 80)
(output)
(text "DRAM_BA_1" (rect 0 0 74 14)(font "Arial" (font_size 8)))
(text "DRAM_BA_1" (rect 137 75 211 89)(font "Arial" (font_size 8)))
(line (pt 232 80)(pt 216 80))
)
(port
(pt 232 96)
(output)
(text "DRAM_LDQM" (rect 0 0 76 14)(font "Arial" (font_size 8)))
(text "DRAM_LDQM" (rect 135 91 211 105)(font "Arial" (font_size 8)))
(line (pt 232 96)(pt 216 96))
)
(port
(pt 232 112)
(output)
(text "DRAM_UDQM" (rect 0 0 77 14)(font "Arial" (font_size 8)))
(text "DRAM_UDQM" (rect 134 107 211 121)(font "Arial" (font_size 8)))
(line (pt 232 112)(pt 216 112))
)
(port
(pt 232 128)
(output)
(text "DRAM_WE_N" (rect 0 0 76 14)(font "Arial" (font_size 8)))
(text "DRAM_WE_N" (rect 135 123 211 137)(font "Arial" (font_size 8)))
(line (pt 232 128)(pt 216 128))
)
(port
(pt 232 144)
(output)
(text "DRAM_CAS_N" (rect 0 0 83 14)(font "Arial" (font_size 8)))
(text "DRAM_CAS_N" (rect 128 139 211 153)(font "Arial" (font_size 8)))
(line (pt 232 144)(pt 216 144))
)
(port
(pt 232 160)
(output)
(text "DRAM_RAS_N" (rect 0 0 83 14)(font "Arial" (font_size 8)))
(text "DRAM_RAS_N" (rect 128 155 211 169)(font "Arial" (font_size 8)))
(line (pt 232 160)(pt 216 160))
)
(port
(pt 232 176)
(output)
(text "DRAM_CS_N" (rect 0 0 74 14)(font "Arial" (font_size 8)))
(text "DRAM_CS_N" (rect 137 171 211 185)(font "Arial" (font_size 8)))
(line (pt 232 176)(pt 216 176))
)
(port
(pt 232 192)
(output)
(text "DRAM_CLK" (rect 0 0 66 14)(font "Arial" (font_size 8)))
(text "DRAM_CLK" (rect 145 187 211 201)(font "Arial" (font_size 8)))
(line (pt 232 192)(pt 216 192))
)
(port
(pt 232 208)
(output)
(text "DRAM_CKE" (rect 0 0 66 14)(font "Arial" (font_size 8)))
(text "DRAM_CKE" (rect 145 203 211 217)(font "Arial" (font_size 8)))
(line (pt 232 208)(pt 216 208))
)
(port
(pt 232 248)
(output)
(text "VGA_R[3..0]" (rect 0 0 71 14)(font "Arial" (font_size 8)))
(text "VGA_R[3..0]" (rect 140 243 211 257)(font "Arial" (font_size 8)))
(line (pt 232 248)(pt 216 248)(line_width 3))
)
(port
(pt 232 264)
(output)
(text "VGA_G[3..0]" (rect 0 0 73 14)(font "Arial" (font_size 8)))
(text "VGA_G[3..0]" (rect 138 259 211 273)(font "Arial" (font_size 8)))
(line (pt 232 264)(pt 216 264)(line_width 3))
)
(port
(pt 232 280)
(output)
(text "VGA_B[3..0]" (rect 0 0 71 14)(font "Arial" (font_size 8)))
(text "VGA_B[3..0]" (rect 140 275 211 289)(font "Arial" (font_size 8)))
(line (pt 232 280)(pt 216 280)(line_width 3))
)
(port
(pt 232 296)
(output)
(text "VGA_HS" (rect 0 0 51 14)(font "Arial" (font_size 8)))
(text "VGA_HS" (rect 160 291 211 305)(font "Arial" (font_size 8)))
(line (pt 232 296)(pt 216 296))
)
(port
(pt 232 312)
(output)
(text "VGA_VS" (rect 0 0 53 14)(font "Arial" (font_size 8)))
(text "VGA_VS" (rect 158 307 211 321)(font "Arial" (font_size 8)))
(line (pt 232 312)(pt 216 312))
)
(port
(pt 232 32)
(output)
(text "DRAM_ADDR[11..0]" (rect 0 0 112 14)(font "Arial" (font_size 8)))
(text "DRAM_ADDR[11..0]" (rect 99 27 211 41)(font "Arial" (font_size 8)))
(line (pt 232 32)(pt 216 32)(line_width 3))
)
(port
(pt 232 48)
(bidir)
(text "DRAM_DQ[15..0]" (rect 0 0 95 14)(font "Arial" (font_size 8)))
(text "DRAM_DQ[15..0]" (rect 116 43 211 57)(font "Arial" (font_size 8)))
(line (pt 232 48)(pt 216 48)(line_width 3))
)
(drawing
(line (pt 216 224)(pt 16 224)(color 0 0 0)(dotted))
(line (pt 216 232)(pt 16 232)(color 0 0 0)(dotted))
(rectangle (rect 16 16 216 328))
)
)
(connector
(pt 664 328)
(pt 760 328)
(bus)
)
(connector
(pt 664 496)
(pt 680 496)
(bus)
)
(connector
(pt 664 512)
(pt 696 512)
(bus)
)
(connector
(pt 664 528)
(pt 712 528)
)
(connector
(pt 664 544)
(pt 728 544)
)
(connector
(pt 664 560)
(pt 744 560)
)
(connector
(pt 992 424)
(pt 1008 424)
(bus)
)
(connector
(pt 992 472)
(pt 1008 472)
)
(connector
(pt 992 488)
(pt 1008 488)
)
(connector
(pt 992 504)
(pt 1008 504)
)
(connector
(pt 992 520)
(pt 1008 520)
)
(connector
(pt 992 536)
(pt 1008 536)
)
(connector
(pt 992 552)
(pt 1008 552)
)
(connector
(pt 992 568)
(pt 1008 568)
)
(connector
(pt 992 584)
(pt 1008 584)
)
(connector
(pt 992 600)
(pt 1008 600)
)
(connector
(pt 992 440)
(pt 1008 440)
(bus)
)
(connector
(pt 992 456)
(pt 1008 456)
)
(connector
(pt 680 424)
(pt 760 424)
(bus)
)
(connector
(pt 696 440)
(pt 760 440)
(bus)
)
(connector
(pt 712 456)
(pt 760 456)
)
(connector
(pt 728 472)
(pt 760 472)
)
(connector
(pt 744 488)
(pt 760 488)
)
(connector
(pt 664 248)
(pt 680 248)
(bus)
)
(connector
(pt 680 248)
(pt 760 248)
(bus)
)
(connector
(pt 664 264)
(pt 696 264)
(bus)
)
(connector
(pt 696 264)
(pt 760 264)
(bus)
)
(connector
(pt 664 280)
(pt 712 280)
)
(connector
(pt 712 280)
(pt 760 280)
)
(connector
(pt 664 296)
(pt 728 296)
)
(connector
(pt 728 296)
(pt 760 296)
)
(connector
(pt 664 312)
(pt 744 312)
)
(connector
(pt 744 312)
(pt 760 312)
)
(connector
(pt 680 216)
(pt 680 248)
(bus)
)
(connector
(pt 680 248)
(pt 680 424)
(bus)
)
(connector
(pt 680 424)
(pt 680 496)
(bus)
)
(connector
(pt 696 216)
(pt 696 264)
(bus)
)
(connector
(pt 696 264)
(pt 696 440)