Fix missing comma in merge

This commit is contained in:
Matthew 2024-06-21 11:42:19 -05:00
parent 46260377e4
commit 636501e06c

View File

@ -92,7 +92,7 @@ module lsu import cvw::*; #(parameter cvw_t P) (
output logic ITLBWriteF, // Write PTE to ITLB
output logic SelHPTW, // During a HPTW walk the effective privilege mode becomes S_MODE
input var logic [7:0] PMPCFG_ARRAY_REGW[P.PMP_ENTRIES-1:0], // PMP configuration from privileged unit
input var logic [P.PA_BITS-3:0] PMPADDR_ARRAY_REGW[P.PMP_ENTRIES-1:0] // PMP address from privileged unit
input var logic [P.PA_BITS-3:0] PMPADDR_ARRAY_REGW[P.PMP_ENTRIES-1:0],// PMP address from privileged unit
// Debug scan chain
input logic DebugCapture,
input logic DebugScanEn,