Skip to content

Commit

Permalink
[rtl] Fix wrong address in latch RF
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
nasahlpa authored and GregAC committed Sep 17, 2024
1 parent 53888bc commit 2617c43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtl/ibex_register_file_latch.sv
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2617c43

Please sign in to comment.