Skip to content

Commit

Permalink
hw: Fix widths of doub_bt parameter literals (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulsc96 authored Jul 5, 2024
1 parent 4a270af commit 9de8d76
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hw/cheshire_pkg.sv
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ package cheshire_pkg;
LlcAmoPostCut : 1,
LlcOutConnect : 1,
LlcOutRegionStart : 'h8000_0000,
LlcOutRegionEnd : 'h1_0000_0000,
LlcOutRegionEnd : 64'h1_0000_0000,
// VGA: RGB332
VgaRedWidth : 3,
VgaGreenWidth : 3,
Expand All @@ -641,8 +641,8 @@ package cheshire_pkg;
SlinkMaxTxnsPerId : 4,
SlinkMaxUniqIds : 4,
SlinkMaxClkDiv : 1024,
SlinkRegionStart : 'h1_0000_0000,
SlinkRegionEnd : 'h2_0000_0000,
SlinkRegionStart : 64'h1_0000_0000,
SlinkRegionEnd : 64'h2_0000_0000,
SlinkTxAddrMask : 'hFFFF_FFFF,
SlinkTxAddrDomain : 'h0000_0000,
SlinkUserAmoBit : 1, // Convention: lower AMO bits for cores, MSB for serial link
Expand Down

0 comments on commit 9de8d76

Please sign in to comment.