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:
Sergiusz Bazanski 2018-01-22 18:15:53 +00:00
parent 75e230aae7
commit 7ea5a26734
1 changed files with 3 additions and 2 deletions

View File

@ -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,