-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Verilator] Fix some issues that prevent verilator compiling in CI.
- Loading branch information
1 parent
49b27a8
commit db006e5
Showing
3 changed files
with
11 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,17 +9,16 @@ | |
// Author: Samuel Riedel <[email protected]> | ||
|
||
module address_scrambler | ||
import mempool_pkg::*; | ||
#( | ||
parameter int unsigned AddrWidth = 32, | ||
parameter int unsigned ByteOffset = 2, | ||
parameter int unsigned NumTiles = 2, | ||
parameter int unsigned NumTilesPerDma = 16, | ||
parameter int unsigned NumBanksPerTile = 2, | ||
parameter bit Bypass = 0, | ||
parameter int unsigned SeqMemSizePerTile = 4*1024, | ||
parameter addr_t TCDMBaseAddr = 32'b0, | ||
parameter logic [31:0] TCDMMask = '1 << 28 | ||
parameter int unsigned AddrWidth = 32, | ||
parameter int unsigned ByteOffset = 2, | ||
parameter int unsigned NumTiles = 2, | ||
parameter int unsigned NumTilesPerDma = 16, | ||
parameter int unsigned NumBanksPerTile = 2, | ||
parameter bit Bypass = 0, | ||
parameter int unsigned SeqMemSizePerTile = 4*1024, | ||
parameter logic [AddrWidth-1:0] TCDMBaseAddr = 32'b0, | ||
parameter logic [31:0] TCDMMask = '1 << 28 | ||
) ( | ||
input logic [AddrWidth-1:0] address_i, | ||
output logic [AddrWidth-1:0] address_o | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters