Commit 3fcafedb authored by Tristan Gingold's avatar Tristan Gingold

dma_controller: fix swapped bits in attributes.

parent c863e721
......@@ -367,8 +367,8 @@ begin
dma_len_reg <= next_item_len_i;
dma_nextl_reg <= next_item_next_l_i;
dma_nexth_reg <= next_item_next_h_i;
dma_attrib_chain_reg <= next_item_attrib_i(0);
dma_attrib_dir_reg <= next_item_attrib_i(1);
dma_attrib_chain_reg <= next_item_attrib_i(1);
dma_attrib_dir_reg <= next_item_attrib_i(0);
-- Next item received
dma_ctrl_current_state <= DMA_START_TRANSFER;
end if;
......
Markdown is supported
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