set dram_clk_freq to None
[ls2.git] / hyperram_model / hbc_io.v
1 `timescale 1ns / 1ps
2 //////////////////////////////////////////////////////////////////////////////////
3 // Company:
4 // Engineer:
5 //
6 // Create Date: 13:56:04 08/10/2018
7 // Design Name:
8 // Module Name: hbc_io
9 // Project Name:
10 // Target Devices:
11 // Tool versions:
12 // Description:
13 //
14 // Dependencies:
15 //
16 // Revision:
17 // Revision 0.01 - File Created
18 // Additional Comments:
19 //
20 //////////////////////////////////////////////////////////////////////////////////
21 module hbc_io(
22 input RWDS_o,
23 output RWDS_i,
24 input RWDS_de,
25 inout RWDS,
26 input [7:0] DQ_o,
27 output [7:0] DQ_i,
28 input DQ_de,
29 inout [7:0] DQ
30 );
31
32 assign DQ = DQ_de?DQ_o:8'hZZ;
33 assign RWDS = RWDS_de?RWDS_o:1'bZ;
34 assign RWDS_i = RWDS;
35 assign DQ_i = DQ;
36
37 endmodule