-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnios_system_bb.v
44 lines (42 loc) · 975 Bytes
/
nios_system_bb.v
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
module nios_system (
clk_clk,
keycode_export,
otg_hpi_address_export,
otg_hpi_cs_export,
otg_hpi_data_in_port,
otg_hpi_data_out_port,
otg_hpi_r_export,
otg_hpi_reset_export,
otg_hpi_w_export,
reset_reset_n,
sdram_clk_clk,
sdram_wire_addr,
sdram_wire_ba,
sdram_wire_cas_n,
sdram_wire_cke,
sdram_wire_cs_n,
sdram_wire_dq,
sdram_wire_dqm,
sdram_wire_ras_n,
sdram_wire_we_n);
input clk_clk;
output [7:0] keycode_export;
output [1:0] otg_hpi_address_export;
output otg_hpi_cs_export;
input [15:0] otg_hpi_data_in_port;
output [15:0] otg_hpi_data_out_port;
output otg_hpi_r_export;
output otg_hpi_reset_export;
output otg_hpi_w_export;
input reset_reset_n;
output sdram_clk_clk;
output [12:0] sdram_wire_addr;
output [1:0] sdram_wire_ba;
output sdram_wire_cas_n;
output sdram_wire_cke;
output sdram_wire_cs_n;
inout [31:0] sdram_wire_dq;
output [3:0] sdram_wire_dqm;
output sdram_wire_ras_n;
output sdram_wire_we_n;
endmodule