Skip to content

Commit

Permalink
Update host_b.address assignment
Browse files Browse the repository at this point in the history
Signed-off-by: gmlayer0 <gmlayer0@outlook.com>
  • Loading branch information
gmlayer0 committed May 13, 2024
1 parent 58a3de8 commit 14892fe
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ip/tl/rtl/tl_broadcast.sv
Original file line number Diff line number Diff line change
Expand Up @@ -497,8 +497,7 @@ module tl_broadcast import tl_pkg::*; #(
assign host_b.opcode = ProbeBlock;
assign host_b.param = probe_param_q;
assign host_b.size = MaxSize;
assign host_b.address[AddrWidth-1:MaxSize] = address_q[AddrWidth-1:MaxSize];
assign host_b.address[MaxSize-1:0] = '0;
assign host_b.address = {address_q[AddrWidth-1:MaxSize], {MaxSize{1'b0}}};

// Zero or onehot bit mask of currently probing host.
logic [NumCachedHosts-1:0] probe_selected;
Expand Down

0 comments on commit 14892fe

Please sign in to comment.