Skip to content

Commit

Permalink
[hardware] Fix bug in the DMA's distributed midend
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelRiedel committed Sep 22, 2023
1 parent e6481dc commit dd64ee4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Fixed
- Fix type issue in `snitch_addr_demux`
- Fix a bug in the DMA's distributed midend

## 0.6.0 - 2023-01-09

Expand Down
2 changes: 1 addition & 1 deletion hardware/deps/idma/src/midends/idma_distributed_midend.sv
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ module idma_distributed_midend #(
valid_o[i] = 1'b0;
ready[i] = 1'b1;
// Inject trans complete
if (valid) begin
if (valid[i]) begin
tie_off_trans_complete_d[i] = 1'b1;
end
end else if (($unsigned(start_addr) >= i*DmaRegionWidth)) begin
Expand Down

0 comments on commit dd64ee4

Please sign in to comment.