Skip to content
Snippets Groups Projects
Commit 67976a39 authored by Dimitris Lampridis's avatar Dimitris Lampridis
Browse files

hdl: add wb_remapper to wishbone_pkg

parent 0118fda6
No related branches found
No related tags found
No related merge requests found
...@@ -1081,6 +1081,20 @@ package wishbone_pkg is ...@@ -1081,6 +1081,20 @@ package wishbone_pkg is
external_granted_o : out std_logic); external_granted_o : out std_logic);
end component; end component;
component xwb_remapper is
generic (
g_num_ranges : integer := 1;
g_base_in : t_wishbone_address_array;
g_base_out : t_wishbone_address_array;
g_mask_in : t_wishbone_address_array;
g_mask_out : t_wishbone_address_array);
port (
slave_i : in t_wishbone_slave_in;
slave_o : out t_wishbone_slave_out;
master_i : in t_wishbone_master_in;
master_o : out t_wishbone_master_out);
end component xwb_remapper;
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
-- I2C to Wishbone bridge, following protocol defined with ELMA -- I2C to Wishbone bridge, following protocol defined with ELMA
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment