mirror of
https://github.com/openhwgroup/cva5.git
synced 2025-04-22 13:07:33 -04:00
Change | to & on a_wbe
This commit is contained in:
parent
5032f1124e
commit
65c480f6c6
1 changed files with 1 additions and 1 deletions
|
@ -185,7 +185,7 @@ module dcache_inv
|
|||
logic[CONFIG.DCACHE.WAYS-1:0] hit_ohot_r;
|
||||
|
||||
assign a_en = snoop_write | stage1_tb_write_r | ls.new_request;
|
||||
assign a_wbe = ({CONFIG.DCACHE.WAYS{snoop_write}} & snoop_hit) | ({CONFIG.DCACHE.WAYS{stage1_tb_write_r}} | (stage1_type == CBO ? hit_ohot_r : replacement_way));
|
||||
assign a_wbe = ({CONFIG.DCACHE.WAYS{snoop_write}} & snoop_hit) | ({CONFIG.DCACHE.WAYS{stage1_tb_write_r}} & (stage1_type == CBO ? hit_ohot_r : replacement_way));
|
||||
|
||||
always_comb begin
|
||||
if (snoop_write)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue