From 26042b682c8041b556ff5d83cd340242fbce12f6 Mon Sep 17 00:00:00 2001 From: Jerry Zhao Date: Tue, 17 Sep 2019 15:36:56 -0700 Subject: [PATCH] Replace UnifiedBoomConfig with SmallRv32BoomConfig --- generators/example/src/main/scala/BoomConfigs.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/generators/example/src/main/scala/BoomConfigs.scala b/generators/example/src/main/scala/BoomConfigs.scala index 59654ea5..9b073907 100644 --- a/generators/example/src/main/scala/BoomConfigs.scala +++ b/generators/example/src/main/scala/BoomConfigs.scala @@ -48,12 +48,12 @@ class DualSmallBoomConfig extends Config( new boom.common.WithNBoomCores(2) ++ // dual-core new freechips.rocketchip.system.BaseConfig) -class SmallRV32UnifiedBoomConfig extends Config( +class SmallRV32BoomConfig extends Config( new WithTop ++ new WithBootROM ++ new freechips.rocketchip.subsystem.WithInclusiveCache ++ - new boom.common.WithoutBoomFPU ++ // no floating point - new boom.common.WithUnifiedMemIntIQs ++ // use unified mem+int issue queues + new boom.common.WithoutBoomFPU ++ // no fp + new boom.common.WithBoomRV32 ++ // rv32 (32bit) new boom.common.WithSmallBooms ++ new boom.common.WithNBoomCores(1) ++ new freechips.rocketchip.system.BaseConfig)