Skip to content
Snippets Groups Projects
Commit 2f134e41 authored by Tomasz Wlostowski's avatar Tomasz Wlostowski
Browse files

wishbone_pkg: use data width constant for the width of cc_dummy_data

parent 543424e0
Branches
Tags
No related merge requests found
......@@ -60,7 +60,7 @@ package wishbone_pkg is
constant cc_dummy_address : std_logic_vector(c_wishbone_address_width-1 downto 0) :=
(others => 'X');
constant cc_dummy_data : std_logic_vector(c_wishbone_address_width-1 downto 0) :=
constant cc_dummy_data : std_logic_vector(c_wishbone_data_width-1 downto 0) :=
(others => 'X');
constant cc_dummy_sel : std_logic_vector(c_wishbone_data_width/8-1 downto 0) :=
(others => 'X');
......
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