IBusCachedPlugin default is two cycle cache with single cycle ram.

This commit is contained in:
Dolu1990 2018-05-24 13:46:31 +02:00
parent 2f8ccc55b6
commit 485f35a1b5
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@ object GenSmallAndProductiveICache extends App{
catchMemoryTranslationMiss = false,
asyncTagMemory = false,
twoCycleRam = false,
twoCycleCache = false
twoCycleCache = true
)
),
new DBusSimplePlugin(

View file

@ -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){