Skip to content

Commit

Permalink
[rtl] Drive oh_raddr_*_err if RdataMuxCheck=0
Browse files Browse the repository at this point in the history
These errors aren't detected or reported if the mux is disabled, but
the RTL didn't actually drive them at all.
  • Loading branch information
rswarbrick committed Jan 7, 2025
1 parent 8f4c75c commit 4d722d3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions rtl/ibex_register_file_fpga.sv
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4d722d3

Please sign in to comment.