mirror of
https://github.com/lowRISC/ibex.git
synced 2025-06-27 17:00:41 -04:00
[rtl] Drive oh_raddr_*_err if RdataMuxCheck=0
These errors aren't detected or reported if the mux is disabled, but the RTL didn't actually drive them at all.
This commit is contained in:
parent
8f4c75c5e4
commit
4d722d3308
1 changed files with 3 additions and 0 deletions
|
@ -155,6 +155,9 @@ module ibex_register_file_fpga #(
|
|||
|
||||
// async_read b
|
||||
assign rdata_b_o = (raddr_b_i == '0) ? WordZeroVal : mem[raddr_b_i];
|
||||
|
||||
assign oh_raddr_a_err = 1'b0;
|
||||
assign oh_raddr_b_err = 1'b0;
|
||||
end
|
||||
|
||||
// we select
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue