Skip to content

Commit

Permalink
frontend: remove assign statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucia Luzi committed Feb 12, 2025
1 parent 20e1150 commit 3741238
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 @@ -322,9 +322,9 @@ module idma_inst64_top #(

always_comb begin : gen_obi_response
if (obi_we_q[c]) begin
assign obi_write_rsp[c].r = obi_res_i[c].r;
obi_write_rsp[c].r = obi_res_i[c].r;
end else begin
assign obi_read_rsp[c].r = obi_res_i[c].r;
obi_read_rsp[c].r = obi_res_i[c].r;
end
end

Expand Down

0 comments on commit 3741238

Please sign in to comment.