mirror of
https://github.com/lowRISC/ibex.git
synced 2025-06-27 17:00:41 -04:00
[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 <nasahlpa@lowrisc.org>
This commit is contained in:
parent
53888bcdf4
commit
2617c43c0a
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue