-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDE0_CV.v
More file actions
38 lines (24 loc) · 882 Bytes
/
Copy pathDE0_CV.v
File metadata and controls
38 lines (24 loc) · 882 Bytes
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
//=======================================================
// This code is generated by Terasic System Builder
//=======================================================
module DE0_CV(
//////////// CLOCK //////////
input CLOCK_50,
//////////// KEY //////////
input [3:0] KEY,
input RESET_N,
//////////// LED //////////
output [9:0] LED
);
//=======================================================
// REG/WIRE declarations
//=======================================================
//=======================================================
// Structural coding
//=======================================================
niosii_top u0 (
.clk_1_clk (CLOCK_50), // clk_1.clk
.reset_1_reset_n (RESET_N), // reset_1.reset_n
.pio_0_external_connection_export (LED[9:0])
);
endmodule