Skip to content

Commit

Permalink
[hardawre] Keep memory size constant with NrLanes
Browse files Browse the repository at this point in the history
  • Loading branch information
mp-17 committed Aug 15, 2024
1 parent 218c011 commit 12618e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hardware/src/ara_soc.sv
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module ara_soc import axi_pkg::*; import ara_pkg::*; #(
// AXI Resp Delay [ps] for gate-level simulation
parameter int unsigned AxiRespDelay = 200,
// Main memory
parameter int unsigned L2NumWords = 2**20,
parameter int unsigned L2NumWords = (2**22) / NrLanes,
// Dependant parameters. DO NOT CHANGE!
localparam type axi_data_t = logic [AxiDataWidth-1:0],
localparam type axi_strb_t = logic [AxiDataWidth/8-1:0],
Expand Down

0 comments on commit 12618e2

Please sign in to comment.