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

Subversion Repositories qaz_libs

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /qaz_libs/trunk/PCIe/src
    from Rev 42 to Rev 43
    Reverse comparison

Rev 42 → Rev 43

/RIFFA/riffa_chnl_rx.sv
84,7 → 84,7
//
always_ff @(posedge clk)
if(reset | rx_done)
rx_index = 0;
rx_index <= 0;
else if(rd_en)
rx_index <= rx_index + (N/4); // increment by 32 bit words
 
/RIFFA/riffa_chnl_tx.sv
59,7 → 59,7
//
always_ff @(posedge clk)
if(reset | ~chnl_bus.tx | tx_done)
tx_index = 0;
tx_index <= 0;
else if(chnl_bus.tx_data_valid & chnl_bus.tx_data_ren)
tx_index <= tx_index + (N/4); // increment by 32 bit words
 

powered by: WebSVN 2.1.0

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