-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathesperienza4_fpga
224 lines (149 loc) · 4.04 KB
/
esperienza4_fpga
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
*Introduction to FPGA Programming*
"""
Laura Francesca Iacob, Sara Pieri, Sara Schippa
Laboratorio di Elettronica e Tecniche di Acquisizione Dati, professor Mirko Mariotti
Di seguito sono riportati i codici scritti in Vivado ed utilizzati per programmare la FPGA a disposizione nei diversi modi richiesti.
"""
0_notModule
module notMod (
input wire A,
output wire B
);
assign B=!A;
endmodule
1_andModule
module andMod (
input wire A,
input wire B,
output wire C
);
assign C=A&B;
endmodule
2_logicDoor
module logicDoor (
input wire A,
input wire B,
input wire C,
output wire D,
output wire E
);
assign D=A&(B|C);
assign E=B|C;
endmodule
3_blink_f0
module blink (
input clk,
output reg [7:0] LED
);
reg counter;
initial;
counter=0;
always @ (posedge clk) begin
LED[0] <= counter;
counter <= counter +1;
end
endmodule
4_blink_f1
module blink (
input clk,
output reg [7:0] LED
);
reg [32:0] counter;
initial;
counter=0;
always @ (posedge clk) begin
LED[0] <= counter[23];
counter <= counter +1;
end
endmodule
4_blink_f2
module blink (
input clk,
output reg [7:0] LED
);
reg [32:0] counter;
initial;
counter=0;
always @ (posedge clk) begin
LED[0] <= counter[31];
counter <= counter +1;
end
endmodule
5_switch
module LED_sw (
input clk,
input [1:0] sw,
output reg [7:0] LED
);
reg [32:0] counter;
initial
counter=0;
always @ (posedge clk) begin
if (sw[0]==1’b1) begin
LED[0] <= counter[25];
counter <= counter +1;
end
end
endmodule
6_counter_binario
module counter_binario (
input clk,
output reg [15:0] LED
);
reg [50:0] counter;
integer i;
initial
counter=0;
always @ (posedge clk) begin
for (i=0; i<16; i=i+1)
LED[i] <= counter[23+i] ;
counter <= counter +1;
end
endmodule
7_joystick_c
module joystick_c (
input clk,
input btnC
output reg [7:0] LED
);
integer old;
initial
LED[0]=1’b0;
always @ (posedge clk) begin
old<=btnC;
if(btnC!=old & btnC==1)
if(LED[0]==1’b0)
LED[0]<=1’b1;
else if (LED[0]==1’b1)
LED[0]<=1’b0;
end
endmodule
8_kitt
module kitt (
input clk,
input btnL,
input btnR,
output reg [15:0] LED
);
reg oldR;
reg oldL;
reg [4:0] i;
initial begin
i=0;
LED[0]=1’b1;
end
always @ (posedge clk) begin
oldR<=btnR;
oldL<=btnL;
if (oldR!=btnR & btnR==1 & i>0) begin
LED[i]<=1’b0;
LED[i-1]<=1’b1;
i<=i-1;
end
else if (oldL!=btnL & btnL==1 & i<15) begin
LED[i]<=1’b0;
LED[i+1]<=1’b1;
i<=i+1;
end
end
endmodule