mirror of
https://github.com/SpinalHDL/VexRiscv.git
synced 2025-01-03 03:43:39 -05:00
IBusCachedPlugin default is two cycle cache with single cycle ram.
This commit is contained in:
parent
2f8ccc55b6
commit
485f35a1b5
2 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ object GenSmallAndProductiveICache extends App{
|
|||
catchMemoryTranslationMiss = false,
|
||||
asyncTagMemory = false,
|
||||
twoCycleRam = false,
|
||||
twoCycleCache = false
|
||||
twoCycleCache = true
|
||||
)
|
||||
),
|
||||
new DBusSimplePlugin(
|
||||
|
|
|
@ -17,7 +17,7 @@ case class InstructionCacheConfig( cacheSize : Int,
|
|||
catchAccessFault : Boolean,
|
||||
catchMemoryTranslationMiss : Boolean,
|
||||
asyncTagMemory : Boolean,
|
||||
twoCycleCache : Boolean = false,
|
||||
twoCycleCache : Boolean = true,
|
||||
twoCycleRam : Boolean = false,
|
||||
preResetFlush : Boolean = false){
|
||||
|
||||
|
|
Loading…
Reference in a new issue