Merged r9433:9527 from features/gr-usrp2 into trunk. Adds usrp2 and gr-usrp2 top...
[debian/gnuradio] / usrp2 / fpga / opencores / ethernet_tri_mode / rtl / verilog / mac_tb.v
1 module mac_tb();
2
3 MAC_top MAC_top
4   (//system signals
5    .Reset            (),
6    .Clk_125M         (),
7    .Clk_user         (),
8    .Clk_reg          (),
9    .Speed            (),  // 2:0
10
11    // RX interface 
12    .Rx_mac_ra        (),
13    .Rx_mac_rd        (),
14    .Rx_mac_data      (),
15    .Rx_mac_BE        (),
16    .Rx_mac_pa        (),
17    .Rx_mac_sop       (),
18    .Rx_mac_eop       (),
19
20    //TX interface 
21    .Tx_mac_wa        (),
22    .Tx_mac_wr        (),
23    .Tx_mac_data      (),
24    .Tx_mac_BE        (),//big endian
25    .Tx_mac_sop       (),
26    .Tx_mac_eop       (),
27
28    //Phy interface         
29    .Gtx_clk          (),//used only in GMII mode
30    .Rx_clk           (),
31    .Tx_clk           (),//used only in MII mode
32    .Tx_er            (),
33    .Tx_en            (),
34    .Txd              (),
35    .Rx_er            (),
36    .Rx_dv            (),
37    .Rxd              (),
38    .Crs              (),
39    .Col              (),
40
41    //host interface
42    .CSB              (),
43    .WRB              (),
44    .CD_in            (),
45    .CD_out           (),
46    .CA               (),                
47
48    //mdx
49    .Mdio             (),// MII Management Data In
50    .Mdc              () // MII Management Data Clock       
51    
52    );  
53
54
55 endmodule // mac_tb