Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions generators/chipyard/src/main/scala/config/NoCConfigs.scala
Original file line number Diff line number Diff line change
Expand Up @@ -215,3 +215,12 @@ class SbusRingNoCConfig extends Config(
new freechips.rocketchip.subsystem.WithNBanks(4) ++
new chipyard.config.AbstractConfig
)

class ManyCoreNoCConfig extends Config(
new boom.common.WithCloneBoomTiles(15, 64) ++
new boom.common.WithNMegaBooms ++
new freechips.rocketchip.subsystem.WithCloneRocketTiles(63) ++
new freechips.rocketchip.subsystem.WithNBigCores(1) ++
new freechips.rocketchip.subsystem.WithNBanks(16) ++
new chipyard.config.AbstractConfig
)
3 changes: 2 additions & 1 deletion tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ LDFLAGS= -static
include libgloss.mk

PROGRAMS = pwm blkdev accum charcount nic-loopback big-blkdev pingd \
streaming-passthrough streaming-fir nvdla spiflashread spiflashwrite fft gcd
streaming-passthrough streaming-fir nvdla spiflashread spiflashwrite fft gcd \
hello

spiflash.img: spiflash.py
python3 $<
Expand Down
5 changes: 5 additions & 0 deletions tests/hello.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#include <stdio.h>

int main(void) {
printf("Hello world\n");
}