From 2617c43c0a20cfcd0d9fff86cbd172b8328ae285 Mon Sep 17 00:00:00 2001 From: Pascal Nasahl Date: Tue, 17 Sep 2024 15:43:23 +0200 Subject: [PATCH] [rtl] Fix wrong address in latch RF This commit fixes a typo that used the wrong read address (raddr_b instead of raddr_a) for port A. Signed-off-by: Pascal Nasahl --- rtl/ibex_register_file_latch.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtl/ibex_register_file_latch.sv b/rtl/ibex_register_file_latch.sv index 4c295e2e..375da414 100644 --- a/rtl/ibex_register_file_latch.sv +++ b/rtl/ibex_register_file_latch.sv @@ -118,7 +118,7 @@ module ibex_register_file_latch #( .clk_i, .rst_ni, .oh_i (raddr_onehot_a_buf), - .addr_i (raddr_b_int), + .addr_i (raddr_a_int), // Set enable=1 as address is always valid. .en_i (1'b1), .err_o (oh_raddr_a_err)