Skip to content

Commit

Permalink
Fix error in L2 memory map.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yvan Tortorella committed Jan 21, 2024
1 parent afe2df1 commit d6abcc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hw/configs/carfield_default_cfg.sv
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ localparam doub_bt L2Port0Base = 'h78000000;
localparam doub_bt L2Port0Size = 'h00200000;
// L2, port 1
localparam bit L2Port1Enable = 1;
localparam doub_bt L2Port1Base = L2Port0Base;
localparam doub_bt L2Port1Base = L2Port0Base + L2Port0Size;
localparam doub_bt L2Port1Size = L2Port0Size;
// Safety Island
localparam bit SafetyIslandEnable = 1;
Expand Down
2 changes: 1 addition & 1 deletion hw/configs/carfield_fpga_cfg.sv
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ localparam doub_bt L2Port0Base = 'h78000000;
localparam doub_bt L2Port0Size = 'h00200000;
// L2, port 1
localparam bit L2Port1Enable = 1;
localparam doub_bt L2Port1Base = L2Port0Base;
localparam doub_bt L2Port1Base = L2Port0Base + L2Port0Size;
localparam doub_bt L2Port1Size = L2Port0Size;
// Safety Island
localparam bit SafetyIslandEnable = `GEN_SAFETY_ISLAND;
Expand Down

0 comments on commit d6abcc5

Please sign in to comment.