File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1111
1212// Number of RAM blocks for the mgmt_core
1313`define MGMT_BLOCKS 2
14- `define USER_BLOCKS 4
14+ `define USER_BLOCKS 6
Original file line number Diff line number Diff line change @@ -220,6 +220,8 @@ module mgmt_soc (
220220 };
221221
222222 parameter [(`USER_BLOCKS* 24 )- 1 :0 ] USER_BLOCKS_ADR = {
223+ {24 'h 50_0000},
224+ {24 'h 40_0000},
223225 {24 'h 30_0000},
224226 {24 'h 20_0000},
225227 {24 'h 10_0000},
Original file line number Diff line number Diff line change 33 Management area has R/W access for MGMT_BLOCKS and RO access for USER_BLOCKS */
44
55module storage #(
6- parameter USER_BLOCKS = 4 , // R/W access
6+ parameter USER_BLOCKS = 6 , // R/W access
77 parameter MGMT_BLOCKS = 2 // R/W access
88) (
99 // MGMT_AREA R/W Interface (MGMT_BLOCKS)
Original file line number Diff line number Diff line change 11module storage_bridge_wb #(
2- parameter USER_BLOCKS = 4 ,
2+ parameter USER_BLOCKS = 6 ,
33 parameter MGMT_BLOCKS = 2 ,
44 parameter MGMT_BASE_ADR = 32 'h 0100_0000,
55 parameter USER_BASE_ADR = 32 'h 0200_0000
@@ -40,6 +40,8 @@ module storage_bridge_wb #(
4040 };
4141
4242 parameter [(USER_BLOCKS* 24 )- 1 :0 ] USER_BLOCKS_ADR = {
43+ {24 'h 50_0000},
44+ {24 'h 40_0000},
4345 {24 'h 30_0000},
4446 {24 'h 20_0000},
4547 {24 'h 10_0000},
You can’t perform that action at this time.
0 commit comments