Skip to content
Snippets Groups Projects
Commit 74bc6aa7 authored by Timon Heim's avatar Timon Heim
Browse files

Changes l2p mechanic.

parent cf1609e6
Branches
Tags
No related merge requests found
This diff is collapsed.
......@@ -580,7 +580,8 @@ begin
elsif rising_edge(p2l_dma_clk_i) then
-- data and address
if (to_wb_fifo_valid = '1') then
p2l_dma_adr_o <= "00" & to_wb_fifo_dout(61 downto 32);
p2l_dma_adr_o(31 downto 30) <= "00";
p2l_dma_adr_o(29 downto 0) <= to_wb_fifo_dout(61 downto 32);
p2l_dma_dat_o <= to_wb_fifo_dout(31 downto 0);
end if;
-- stb and sel signals management
......
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