Skip to content

Commit

Permalink
Testing one change as per TL
Browse files Browse the repository at this point in the history
  • Loading branch information
gullahmed1 committed Sep 12, 2023
1 parent e942752 commit a21f5ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/mmu_sv32/cva6_mmu_sv32.sv
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ module cva6_mmu_sv32 import ariane_pkg::*; #(
lsu_dtlb_ppn_o = {{riscv::PLEN-riscv::VLEN{1'b0}},lsu_vaddr_n[riscv::VLEN-1:12]};
end else begin
lsu_paddr_o = lsu_vaddr_q[riscv::PLEN-1:0];
lsu_dtlb_ppn_o = {{2{1'b0}},lsu_vaddr_n[riscv::VLEN-1:12]};
lsu_dtlb_ppn_o = lsu_vaddr_n[riscv::PPNW-1:0]; // changing as per TL
end
lsu_valid_o = lsu_req_q;
lsu_exception_o = misaligned_ex_q;
Expand Down

0 comments on commit a21f5ee

Please sign in to comment.