Enable hardware multiplier and divider in PicoRV32
This should become tunable later once we can configure whether we link in the soft mul library or not.
This commit is contained in:
parent
75e230aae7
commit
7ea5a26734
|
@ -35,9 +35,10 @@ class PicoRV32(Module):
|
||||||
p_CATCH_MISALIGN=1,
|
p_CATCH_MISALIGN=1,
|
||||||
p_CATCH_ILLINSN=1,
|
p_CATCH_ILLINSN=1,
|
||||||
p_ENABLE_PCPI=0,
|
p_ENABLE_PCPI=0,
|
||||||
p_ENABLE_MUL=0,
|
p_ENABLE_MUL=1,
|
||||||
|
p_ENABLE_DIV=1,
|
||||||
p_ENABLE_FAST_MUL=0,
|
p_ENABLE_FAST_MUL=0,
|
||||||
p_ENABLE_IRQ=0,
|
p_ENABLE_IRQ=1,
|
||||||
p_ENABLE_IRQ_QREGS=1,
|
p_ENABLE_IRQ_QREGS=1,
|
||||||
p_ENABLE_IRQ_TIMER=1,
|
p_ENABLE_IRQ_TIMER=1,
|
||||||
p_ENABLE_TRACE=0,
|
p_ENABLE_TRACE=0,
|
||||||
|
|
Loading…
Reference in New Issue