OpenCores
URL https://opencores.org/ocsvn/an-fpga-implementation-of-low-latency-noc-based-mpsoc/an-fpga-implementation-of-low-latency-noc-based-mpsoc/trunk

Subversion Repositories an-fpga-implementation-of-low-latency-noc-based-mpsoc

[/] [an-fpga-implementation-of-low-latency-noc-based-mpsoc/] [trunk/] [mpsoc/] [boards/] [Xilinx/] [Arty_z7_20/] [Arty_z7_20.v] - Blame information for rev 48

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 48 alirezamon
module Arty_z7 (
2
 
3
    //Clock Signal
4
    clk,
5
 
6
    //Switches
7
    sw,
8
 
9
    //RGB LEDs
10
   led4_b,
11
   led4_g,
12
   led4_r,
13
   led5_b,
14
   led5_g,
15
   led5_r,
16
 
17
    //LEDs
18
    led,
19
 
20
    //Buttons
21
    btn,
22
 
23
    //Audio Out
24
    aud_pwm,
25
    aud_sd,
26
 
27
    //HDMI RX Signals 
28
    hdmi_rx_clk_n,
29
    hdmi_rx_clk_p,
30
    hdmi_rx_d_n,
31
    hdmi_rx_d_p,
32
    hdmi_rx_cec,
33
    hdmi_rx_hpd,
34
    hdmi_rx_scl,
35
    hdmi_rx_sda,
36
 
37
     //HDMI TX Signals 
38
    hdmi_tx_cec,
39
    hdmi_tx_clk_n,
40
    hdmi_tx_clk_p,
41
    hdmi_tx_d_n,
42
    hdmi_tx_d_p,
43
    hdmi_tx_hpdn,
44
    hdmi_tx_scl,
45
    hdmi_tx_sda,
46
 
47
    //ChipKit SPI
48
    ck_miso,
49
    ck_mosi,
50
    ck_sck,
51
    ck_ss,
52
 
53
    //ChipKit I2C                                                                                                     
54
    ck_scl,
55
    ck_sda,
56
 
57
    //ChipKit Outer Digital Header
58
    ck_io0 ,
59
    ck_io1 ,
60
    ck_io2 ,
61
    ck_io3 ,
62
    ck_io4 ,
63
    ck_io5 ,
64
    ck_io6 ,
65
    ck_io7 ,
66
    ck_io8 ,
67
    ck_io9 ,
68
    ck_io10,
69
    ck_io11,
70
    ck_io12,
71
    ck_io13,
72
 
73
 
74
    ck_io26,
75
    ck_io27,
76
    ck_io28,
77
    ck_io29,
78
    ck_io30,
79
    ck_io31,
80
    ck_io32,
81
    ck_io33,
82
    ck_io34,
83
    ck_io35,
84
    ck_io36,
85
    ck_io37,
86
    ck_io38,
87
    ck_io39,
88
    ck_io40,
89
    ck_io41
90
 
91
 
92
 
93
 
94
 
95
);
96
 
97
        //Clock Signal
98
        input          clk;
99
 
100
        //Switches
101
    input [1:0]     sw;
102
 
103
        //RGB LEDs
104
    output          led4_b;
105
    output          led4_g;
106
    output          led4_r;
107
    output          led5_b;
108
    output          led5_g;
109
    output          led5_r;
110
 
111
        //LEDs
112
    output [3: 0]   led;
113
 
114
        //Buttons
115
        input [3: 0]    btn;
116
 
117
    //Audio Out
118
    output           aud_pwm;
119
    output           aud_sd;
120
 
121
    //HDMI RX Signals 
122
    input hdmi_rx_clk_n;
123
    input hdmi_rx_clk_p;
124
    input [2:0] hdmi_rx_d_n;
125
    input [2:0] hdmi_rx_d_p;
126
    inout  hdmi_rx_cec;
127
    output hdmi_rx_hpd;
128
    input hdmi_rx_scl;
129
    inout hdmi_rx_sda;
130
 
131
     //HDMI TX Signals 
132
    inout hdmi_tx_cec;
133
    output hdmi_tx_clk_n;
134
    output hdmi_tx_clk_p;
135
    output [2:0] hdmi_tx_d_n;
136
    output [2:0] hdmi_tx_d_p;
137
    input hdmi_tx_hpdn;
138
    inout hdmi_tx_scl;
139
    inout hdmi_tx_sda;
140
 
141
    //ChipKit SPI
142
    inout ck_miso;
143
        inout ck_mosi;
144
    inout ck_sck;
145
    inout ck_ss;
146
 
147
    //ChipKit I2C                                                                                                     
148
    inout ck_scl;
149
    inout ck_sda;
150
 
151
    //ChipKit Outer Digital Header
152
    inout ck_io0 ;
153
    inout ck_io1 ;
154
    inout ck_io2 ;
155
    inout ck_io3 ;
156
    inout ck_io4 ;
157
    inout ck_io5 ;
158
    inout ck_io6 ;
159
    inout ck_io7 ;
160
    inout ck_io8 ;
161
    inout ck_io9 ;
162
    inout ck_io10;
163
    inout ck_io11;
164
    inout ck_io12;
165
    inout ck_io13;
166
 
167
 
168
    inout ck_io26;
169
    inout ck_io27;
170
    inout ck_io28;
171
    inout ck_io29;
172
    inout ck_io30;
173
    inout ck_io31;
174
    inout ck_io32;
175
    inout ck_io33;
176
    inout ck_io34;
177
    inout ck_io35;
178
    inout ck_io36;
179
    inout ck_io37;
180
    inout ck_io38;
181
    inout ck_io39;
182
    inout ck_io40;
183
    inout ck_io41;
184
 
185
 
186
 
187
endmodule

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.