Skip to content

Commit

Permalink
added overflow bit to meta data
Browse files Browse the repository at this point in the history
  • Loading branch information
mmishra9 committed Dec 9, 2024
1 parent 60065b6 commit 0d29f93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion axi/dma/rtl/v2/AxiStreamDmaV2Write.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ begin
v.wMaster.wdata(23 downto 16) := r.lastUser;
v.wMaster.wdata(15 downto 4) := (others => '0');
v.wMaster.wdata(3) := r.continue;
v.wMaster.wdata(2) := '0';
v.wMaster.wdata(2) := r.dmaWrTrack.overflow;
v.wMaster.wdata(1 downto 0) := r.result;

v.wMaster.wstrb := resize(x"FF", 128);
Expand Down

0 comments on commit 0d29f93

Please sign in to comment.