Skip to content

Commit

Permalink
Fix minor compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
fischeti committed May 27, 2024
1 parent c20c65e commit b85b479
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frontend/inst64/idma_inst64_top.sv
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ module idma_inst64_top #(
//--------------------------------------
// Performance events
//--------------------------------------
for (genvar c = 0; c < NumChannels; c++) begin : gen_transfer_id_gen
for (genvar c = 0; c < NumChannels; c++) begin : gen_events
idma_inst64_events #(
.DataWidth ( AxiDataWidth ),
.axi_req_t ( axi_req_t ),
Expand Down Expand Up @@ -411,7 +411,7 @@ module idma_inst64_top #(

dma_op_name = "DMCPY";
is_dma_op = 1'b1;
idma_fe_req_d.burst_reg.axi_id = idma_fe_sel_chan;
idma_fe_req_d.burst_req.opt.axi_id = idma_fe_sel_chan;
idma_fe_req_d.burst_req.length = acc_req_i.data_arga;

// Perform the following sequence:
Expand Down

0 comments on commit b85b479

Please sign in to comment.