Skip to content
Snippets Groups Projects
Commit b6ca97cb authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Added default input values to be able to use ram_r_w as a rom_r by leaving...

Added default input values to be able to use ram_r_w as a rom_r by leaving these ports not connected.
parent d779c1dc
No related branches found
No related tags found
No related merge requests found
......@@ -96,9 +96,9 @@ ENTITY ip_arria10_ram_r_w IS
);
PORT (
clk : IN STD_LOGIC := '1';
data : IN STD_LOGIC_VECTOR(g_dat_w-1 DOWNTO 0);
rdaddress : IN STD_LOGIC_VECTOR(g_adr_w-1 DOWNTO 0);
wraddress : IN STD_LOGIC_VECTOR(g_adr_w-1 DOWNTO 0);
data : IN STD_LOGIC_VECTOR(g_dat_w-1 DOWNTO 0) := (OTHERS=>'0');
rdaddress : IN STD_LOGIC_VECTOR(g_adr_w-1 DOWNTO 0) := (OTHERS=>'0');
wraddress : IN STD_LOGIC_VECTOR(g_adr_w-1 DOWNTO 0) := (OTHERS=>'0');
wren : IN STD_LOGIC := '0';
q : OUT STD_LOGIC_VECTOR(g_dat_w-1 DOWNTO 0)
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment