Skip to content
Snippets Groups Projects
Commit 6123bc56 authored by Tomasz Wlostowski's avatar Tomasz Wlostowski Committed by Tomasz Wlostowski
Browse files

wishbone_pkg: added Wishbone bus array types

parent 65f51f04
Branches
Tags
No related merge requests found
......@@ -60,5 +60,11 @@ package wishbone_pkg is
pad_mosi_o : out std_logic;
pad_miso_i : in std_logic);
end component;
type t_wishbone_master_out_array is array (natural range <>) of t_wishbone_master_out;
type t_wishbone_slave_out_array is array (natural range <>) of t_wishbone_slave_out;
type t_wishbone_master_in_array is array (natural range <>) of t_wishbone_master_in;
type t_wishbone_slave_in_array is array (natural range <>) of t_wishbone_slave_in;
end wishbone_pkg;
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment