Added Vexriscv hardware breakpoint variants for Mini and Lite.
This commit is contained in:
parent
8d3f12ebbd
commit
9e0d8b3f41
|
@ -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",
|
||||||
|
|
Loading…
Reference in New Issue