mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-22 04:47:25 -04:00
[ibex_register_file_fpga] Drop two confusing comments
These were noticed by someone responding to issue #2230. I think the author's original logic was to point out that there's a path from e.g. raddr_a_i to rdata_a_o which doesn't depend on any clock, so is "asynchronous". But that's the same in the other modes and also for the other register file implementations, which don't have analogous comments. Drop these ones.
This commit is contained in:
parent
591c3812f9
commit
cecf4fd2df
1 changed files with 0 additions and 3 deletions
|
@ -150,10 +150,7 @@ module ibex_register_file_fpga #(
|
|||
assign rdata_a_o = (raddr_a_i == '0) ? WordZeroVal : mem_o_a;
|
||||
assign rdata_b_o = (raddr_b_i == '0) ? WordZeroVal : mem_o_b;
|
||||
end else begin : gen_no_rdata_mux_check
|
||||
// async_read a
|
||||
assign rdata_a_o = (raddr_a_i == '0) ? WordZeroVal : mem[raddr_a_i];
|
||||
|
||||
// async_read b
|
||||
assign rdata_b_o = (raddr_b_i == '0) ? WordZeroVal : mem[raddr_b_i];
|
||||
|
||||
assign oh_raddr_a_err = 1'b0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue