OpenCores
URL https://opencores.org/ocsvn/an-fpga-implementation-of-low-latency-noc-based-mpsoc/an-fpga-implementation-of-low-latency-noc-based-mpsoc/trunk

Subversion Repositories an-fpga-implementation-of-low-latency-noc-based-mpsoc

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /an-fpga-implementation-of-low-latency-noc-based-mpsoc/trunk/mpsoc/rtl/src_topolgy/common
    from Rev 48 to Rev 54
    Reverse comparison

Rev 48 → Rev 54

/custom_lkh_routing.v
31,6 → 31,12
//do not modify this line ===Tcustom1Rcustom===
if(TOPOLOGY == "custom1" && ROUTE_NAME== "custom" ) begin : Tcustom1Rcustom
64,6 → 70,12
 
endmodule
/custom_ni_routing.v
21,11 → 21,13
 
generate
//do not modify this line ===Tcustom1Rcustom===
if(TOPOLOGY == "custom1" && ROUTE_NAME== "custom" ) begin : Tcustom1Rcustom
58,7 → 60,13
 
endmodule
/custom_noc_top.sv
1,4 → 1,4
`timescale 1ns / 1ps
`include "pronoc_def.v"
 
module custom_noc_top
import pronoc_pkg::*;
7,7 → 7,8
reset,
clk,
chan_in_all,
chan_out_all
chan_out_all,
router_event
);
 
16,13 → 17,20
input smartflit_chanel_t chan_in_all [NE-1 : 0];
output smartflit_chanel_t chan_out_all [NE-1 : 0];
//Events
output router_event_t router_event [NR-1 : 0][MAX_P-1 : 0];
 
generate
 
 
//do not modify this line ===custom1===
if(TOPOLOGY == "custom1" ) begin : Tcustom1
31,12 → 39,25
.reset(reset),
.clk(clk),
.chan_in_all(chan_in_all),
.chan_out_all(chan_out_all)
.chan_out_all(chan_out_all),
.router_event(router_event)
);
end
end
endgenerate
 
 
 

powered by: WebSVN 2.1.0

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