Skip to content

Commit

Permalink
Art
Browse files Browse the repository at this point in the history
  • Loading branch information
thommythomaso committed Oct 2, 2023
1 parent c0c5dca commit c9eb212
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/future/idma_legalizer_pow2_splitter.sv
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,13 @@ module idma_legalizer_pow2_splitter #(
parameter type addr_t = logic,
parameter type len_t = logic
)(
// Current address
/// Current address
input addr_t addr_i,
// Number of bytes left to transfer
/// Number of bytes left to transfer
input len_t length_i,

// Set if the remaining transfer length is larger
// than what can be represented in len_t
/// Set if the remaining transfer length is larger than what can be represented in len_t
input logic length_larger_i,

// How many bytes we can transfer in this beat
/// How many bytes we can transfer in this beat
output len_t bytes_to_transfer_o
);
// How many bytes are left inside the word
Expand Down

0 comments on commit c9eb212

Please sign in to comment.