picorv32: Fix minimal variant params
The param p_ENABLE_COUNTERS was misspelled.
This commit is contained in:
parent
ef504f62af
commit
0e467168fd
|
@ -103,7 +103,7 @@ class PicoRV32(CPU):
|
||||||
|
|
||||||
if variant == "minimal":
|
if variant == "minimal":
|
||||||
self.cpu_params.update(
|
self.cpu_params.update(
|
||||||
p_ENABLE_COUNTER = 0,
|
p_ENABLE_COUNTERS = 0,
|
||||||
p_ENABLE_COUNTERS64 = 0,
|
p_ENABLE_COUNTERS64 = 0,
|
||||||
p_TWO_STAGE_SHIFT = 0,
|
p_TWO_STAGE_SHIFT = 0,
|
||||||
p_CATCH_MISALIGN = 0,
|
p_CATCH_MISALIGN = 0,
|
||||||
|
|
Loading…
Reference in New Issue