Skip to content

Commit

Permalink
backend: Add missing signals when legalizer is not present
Browse files Browse the repository at this point in the history
  • Loading branch information
chaoqun-liang authored and thommythomaso committed Apr 26, 2024
1 parent deaaf3d commit 5cf2c33
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/backend/tpl/idma_backend.sv.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,7 @@ _rsp_t ${protocol}_write_rsp_i,

// assemble read datapath request
assign r_req.r_dp_req = '{
src_protocol: idma_req_i.opt.src_protocol,
offset: idma_req_i.src_addr[OffsetWidth-1:0],
tailer: OffsetWidth'(idma_req_i.length + idma_req_i.src_addr[OffsetWidth-1:0]),
shift: OffsetWidth'(idma_req_i.src_addr[OffsetWidth-1:0]),
Expand All @@ -474,6 +475,7 @@ _rsp_t ${protocol}_write_rsp_i,

// assemble write datapath request
assign w_req.w_dp_req = '{
dst_protocol: idma_req_i.opt.dst_protocol,
offset: idma_req_i.dst_addr[OffsetWidth-1:0],
tailer: OffsetWidth'(idma_req_i.length + idma_req_i.dst_addr[OffsetWidth-1:0]),
shift: OffsetWidth'(- idma_req_i.dst_addr[OffsetWidth-1:0]),
Expand Down

0 comments on commit 5cf2c33

Please sign in to comment.