OpenCores
URL https://opencores.org/ocsvn/turbo8051/turbo8051/trunk

Subversion Repositories turbo8051

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /turbo8051/trunk/rtl/gmac/top
    from Rev 12 to Rev 19
    Reverse comparison

Rev 12 → Rev 19

/g_mac_top.v
63,11 → 63,13
app_txfifo_wren_i,
app_txfifo_wrdata_i,
app_txfifo_full_o,
app_txfifo_afull_o,
app_txfifo_space_o,
 
// Application TX FIFO Interface
app_rxfifo_rden_i,
app_rxfifo_empty_o,
app_rxfifo_aempty_o,
app_rxfifo_cnt_o,
app_rxfifo_rdata_o,
 
140,11 → 142,13
input app_txfifo_wren_i;
input [8:0] app_txfifo_wrdata_i;
output app_txfifo_full_o;
output app_txfifo_afull_o;
output [AW:0] app_txfifo_space_o;
 
// Application TX FIFO Interface
input app_rxfifo_rden_i;
output app_rxfifo_empty_o;
output app_rxfifo_aempty_o;
output [AW:0] app_rxfifo_cnt_o;
output [8:0] app_rxfifo_rdata_o;
 
285,6 → 289,7
.wr_en (app_txfifo_wren_i),
.wr_data (app_txfifo_wrdata_i),
.full (app_txfifo_full_o), // sync'ed to wr_clk
.afull (app_txfifo_afull_o), // sync'ed to wr_clk
.wr_total_free_space (app_txfifo_space_o),
 
.rd_clk (phy_tx_clk),
291,6 → 296,7
.rd_reset_n (tx_reset_n),
.rd_en (tx_fifo_rd),
.empty (tx_fifo_empty), // sync'ed to rd_clk
.aempty (tx_fifo_aempty), // sync'ed to rd_clk
.rd_total_aval (tx_fifo_aval),
.rd_data (tx_fifo_data)
);
301,6 → 307,7
.wr_en (rx_fifo_wr_o),
.wr_data (rx_fifo_data_o),
.full (rx_fifo_full_i), // sync'ed to wr_clk
.afull (rx_fifo_afull_i), // sync'ed to wr_clk
.wr_total_free_space (),
 
.rd_clk (app_clk),
307,6 → 314,7
.rd_reset_n (app_reset_n),
.rd_en (app_rxfifo_rden_i),
.empty (app_rxfifo_empty_o), // sync'ed to rd_clk
.aempty (app_rxfifo_aempty_o), // sync'ed to rd_clk
.rd_total_aval (app_rxfifo_cnt_o),
.rd_data (app_rxfifo_rdata_o)
);

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.