This repository has been archived by the owner on May 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0cc7d6d
commit f980052
Showing
3 changed files
with
66 additions
and
9 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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package hwdbg.configs | ||
|
||
import chisel3._ | ||
import chisel3.util._ | ||
|
||
|
||
/** @brief | ||
* The constants for min-max tree | ||
*/ | ||
object DebuggerConfigurations { | ||
|
||
val ENABLE_DEBUG: Boolean = false // whether to enable debug or not | ||
|
||
val NUMBER_OF_INPUT_PINS: Int = 16 // Number of input pins | ||
|
||
val NUMBER_OF_OUTPUT_PINS: Int = 16 // Number of output pins | ||
|
||
val BLOCK_RAM_ADDR_WIDTH: Int = 13 // Address width of the Block RAM (BRAM) | ||
|
||
val BLOCK_RAM_DATA_WIDTH: Int = 32 // Data width of the Block RAM (BRAM) | ||
|
||
} |
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