Skip to content

Commit

Permalink
Fix p2 offset wire in cache blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
dpretet committed Sep 3, 2023
1 parent 1119c06 commit d98d5d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtl/friscv_cache_blocks.sv
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ module friscv_cache_blocks

// offset is used to select the correct instruction across the cache line
assign p1_roffset = p1_raddr[OFFSET_IX+:OFFSET_W];
assign p2_roffset = p1_raddr[OFFSET_IX+:OFFSET_W];
assign p2_roffset = p2_raddr[OFFSET_IX+:OFFSET_W];
// address's MSB to identify the memory address source
assign p1_rtag = p1_raddr[TAG_IX+:TAG_W];
assign p2_rtag = p2_raddr[TAG_IX+:TAG_W];
Expand Down

0 comments on commit d98d5d0

Please sign in to comment.