Skip to content

Commit 2617c43

Browse files
nasahlpaGregAC
authored andcommitted
[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 <[email protected]>
1 parent 53888bc commit 2617c43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rtl/ibex_register_file_latch.sv

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ module ibex_register_file_latch #(
118118
.clk_i,
119119
.rst_ni,
120120
.oh_i (raddr_onehot_a_buf),
121-
.addr_i (raddr_b_int),
121+
.addr_i (raddr_a_int),
122122
// Set enable=1 as address is always valid.
123123
.en_i (1'b1),
124124
.err_o (oh_raddr_a_err)

0 commit comments

Comments
 (0)