Merge pull request #1179 from Technosystem-Labs/vexriscv_hw_breakpoints

Added Vexriscv hardware breakpoint variants for Mini and Lite.
This commit is contained in:
enjoy-digital 2022-01-24 08:16:39 +01:00 committed by GitHub
commit 6b3eda16f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 17 deletions

View File

@ -24,8 +24,10 @@ from litex.soc.cores.cpu import CPU, CPU_GCC_TRIPLE_RISCV32
CPU_VARIANTS = { CPU_VARIANTS = {
"minimal": "VexRiscv_Min", "minimal": "VexRiscv_Min",
"minimal+debug": "VexRiscv_MinDebug", "minimal+debug": "VexRiscv_MinDebug",
"minimal+debug+hwbp": "VexRiscv_MinDebugHwBP",
"lite": "VexRiscv_Lite", "lite": "VexRiscv_Lite",
"lite+debug": "VexRiscv_LiteDebug", "lite+debug": "VexRiscv_LiteDebug",
"lite+debug+hwbp": "VexRiscv_LiteDebugHwBP",
"standard": "VexRiscv", "standard": "VexRiscv",
"standard+debug": "VexRiscv_Debug", "standard+debug": "VexRiscv_Debug",
"imac": "VexRiscv_IMAC", "imac": "VexRiscv_IMAC",