From 964bf3e9186ac9f4482e8303d888e2414719c4d2 Mon Sep 17 00:00:00 2001 From: gbellocchi Date: Wed, 8 Jul 2026 12:02:14 +0200 Subject: [PATCH] hw: Fix illegal obi response assign in `idma` top * Fix procedural assign error on per-channel OBI responses. --- src/frontend/inst64/idma_inst64_top.sv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/inst64/idma_inst64_top.sv b/src/frontend/inst64/idma_inst64_top.sv index e8156e7d..5e429e10 100644 --- a/src/frontend/inst64/idma_inst64_top.sv +++ b/src/frontend/inst64/idma_inst64_top.sv @@ -328,8 +328,8 @@ module idma_inst64_top #( ); always_comb begin : gen_obi_response - assign obi_write_rsp[c].r = obi_res_i[c].r; - assign obi_read_rsp[c].r = obi_res_i[c].r; + obi_write_rsp[c].r = obi_res_i[c].r; + obi_read_rsp[c].r = obi_res_i[c].r; end logic [AwInFlightCntWidth-1:0] aw_inflight_q; // outstanding write counter