From bd18c0b06f4b15b83abd1a3e592002325ceb2013 Mon Sep 17 00:00:00 2001 From: Matteo Perotti Date: Wed, 13 Nov 2024 19:48:08 +0100 Subject: [PATCH] [hardware] Fix spyglass wrapper --- hardware/spyglass/src/ara_soc_wrap.sv | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hardware/spyglass/src/ara_soc_wrap.sv b/hardware/spyglass/src/ara_soc_wrap.sv index c49d25719..988be30c3 100644 --- a/hardware/spyglass/src/ara_soc_wrap.sv +++ b/hardware/spyglass/src/ara_soc_wrap.sv @@ -11,6 +11,7 @@ module ara_soc_wrap ( ); localparam int unsigned NrLanes = `NR_LANES; + localparam int unsigned VLEN = `VLEN; localparam int unsigned AxiAddrWidth = 64; localparam int unsigned AxiDataWidth = 64 * NrLanes / 2; localparam int unsigned AxiUserWidth = 1; @@ -20,6 +21,7 @@ module ara_soc_wrap ( ara_soc #( .NrLanes (NrLanes ), + .VLEN (VLEN ), .AxiAddrWidth(AxiAddrWidth ), .AxiDataWidth(AxiDataWidth ), .AxiIdWidth (AxiIdWidth ),