Compare commits

...

2 commits

Author SHA1 Message Date
Retrocamara42
c144fc3fed fix: arbiter functions error 2025-07-15 14:39:47 -05:00
Retrocamara42
16d4ec1186 refactor: arbiter folder created 2025-07-15 14:39:10 -05:00
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.routing_functions.all;
use work.arbiter_functions.all;
entity arbiter is
generic(

View file

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

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.routing_functions.all;
use work.arbiter_functions.all;
entity parent_arbiter is
generic(