mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
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
1 changed files with 3 additions and 2 deletions
|
@ -35,9 +35,10 @@ class PicoRV32(Module):
|
|||
p_CATCH_MISALIGN=1,
|
||||
p_CATCH_ILLINSN=1,
|
||||
p_ENABLE_PCPI=0,
|
||||
p_ENABLE_MUL=0,
|
||||
p_ENABLE_MUL=1,
|
||||
p_ENABLE_DIV=1,
|
||||
p_ENABLE_FAST_MUL=0,
|
||||
p_ENABLE_IRQ=0,
|
||||
p_ENABLE_IRQ=1,
|
||||
p_ENABLE_IRQ_QREGS=1,
|
||||
p_ENABLE_IRQ_TIMER=1,
|
||||
p_ENABLE_TRACE=0,
|
||||
|
|
Loading…
Reference in a new issue