Compare commits

..

No commits in common. "c144fc3fede6986656bc84cad1d99add8748e948" and "c3c439835ec5488b1cd24eb6344005071615ad9f" have entirely different histories.

5 changed files with 4 additions and 4 deletions

View file

@ -2,7 +2,7 @@ library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use work.router_types.all;
use work.arbiter_functions.all;
use work.routing_functions.all;
entity arbiter is
generic(

View file

@ -2,7 +2,7 @@ library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use work.router_types.all;
use work.arbiter_functions.all;
use work.routing_functions.all;
entity parent_arbiter is
generic(

View file

@ -4,7 +4,7 @@ use ieee.numeric_std.all;
use work.router_types.all;
package arbiter_functions is
package routing_functions is
function single_packet_rout_dir_det (
level : in integer;
pack_dest : in t_pos_addr;
@ -21,7 +21,7 @@ package arbiter_functions is
) return std_logic_vector;
end package;
package body arbiter_functions is
package body routing_functions is
function single_packet_parent_rout_dir_det(
level : in integer;
pack_dest : in t_pos_addr;