Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e86bdde

Browse files
committedApr 2, 2024·
Cleaned up comments
1 parent d17d283 commit e86bdde

File tree

1 file changed

+5
-17
lines changed

1 file changed

+5
-17
lines changed
 

‎generators/chipyard/src/main/scala/SpikeTile.scala

+5-17
Original file line numberDiff line numberDiff line change
@@ -628,23 +628,11 @@ class WithSpikeTCM extends Config((site, here, up) => {
628628
/**
629629
* Config fragment to enable different RoCCs, work in progress
630630
*/
631-
class WithMultiRoCC extends Config((site, here, up) => {
631+
class WithAccumRoCC extends Config((site, here, up) => {
632632
case BuildRoCC => List(
633-
// (p: Parameters) => {
634-
// val accumulator = LazyModule(new AccumulatorExample(OpcodeSet.custom0, n = 4)(p))
635-
// accumulator
636-
// }
637-
// (p: Parameters) => {
638-
// val translator = LazyModule(new TranslatorExample(OpcodeSet.custom1)(p))
639-
// translator
640-
// },
641-
// (p: Parameters) => {
642-
// val counter = LazyModule(new CharacterCountExample(OpcodeSet.custom2)(p))
643-
// counter
644-
// },
645-
// (p: Parameters) => {
646-
// val blackbox = LazyModule(new BlackBoxExample(OpcodeSet.custom3, "RoccBlackBox")(p))
647-
// blackbox
648-
// }
633+
(p: Parameters) => {
634+
val accumulator = LazyModule(new AccumulatorExample(OpcodeSet.custom0, n = 4)(p))
635+
accumulator
636+
}
649637
)
650638
})

0 commit comments

Comments
 (0)
Please sign in to comment.